In mobile mode the height of the image is too long how can I adjust this height?
In mobile mode the height of the image is too long how can I adjust this height?
I solved this way
@media (min-width: 1200px) {
#imagem
{
height: 500px;
}
}
In your CSS
you have the following class:
<style>
#imagem
{
height: 500px;
}
</style>
Add it to a media querie
in its CSS
with the height
correct that the image will look the way you want.