0
http://www.adota-me.tk/anuncio.php?id_anuncio=1455188994
In mobile mode the image height is too long as I can adjust that height ?
0
http://www.adota-me.tk/anuncio.php?id_anuncio=1455188994
In mobile mode the image height is too long as I can adjust that height ?
3
In his CSS
you own the following class:
<style>
#imagem
{
height: 500px;
}
</style>
Add her in a media querie
in his CSS
with the height
correct that the image will look the way you want it.
0
I resolved it this way
@media (min-width: 1200px) {
#imagem
{
height: 500px;
}
}
Browser other questions tagged twitter-bootstrap bootstrap-3
You are not signed in. Login or sign up in order to post.
That style in practice is no longer doing anything I took it out now and if checking it does not make any effect
– Amadeu Antunes
If you inspect the HTML elements (F12) and remove the class you will see that it does something yes!
– Randrade