How to adjust bootstrap image height? [closed]

0

link

In mobile mode the height of the image is too long how can I adjust this height?

    
asked by anonymous 16.02.2016 / 14:23

2 answers

0

I solved this way

@media (min-width: 1200px) { 
    #imagem 
    { 
        height: 500px;
    } 
} 
    
16.02.2016 / 15:03
3

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.

    
16.02.2016 / 14:37