Greeting,
What I need to do is make an image invisible when the screen resolution reaches 576px, but I'm not succeeding, I'm doing this;
HTML
<div class="col-sm-2 topo_branco animated fadeInDown">
<img src="assets/img/seta.JPG" height="250" >
</div>
CSS
.topo_branco{
visibility: visible;
height: 200px;
margin: 20px 0;
padding: 10px;
}
@media(max-width: 576px){
.topo_branco{
visibility: hidden;
}
}
What can be wrong?