I am trying to make a div visible or not, when the size of the screen is less than 900px but it has not worked for me. keeps appearing the two images that I have in the div. I would greatly appreciate your help.
<style type="text/css">
/*Si la pantalla es menor a 900px*/
@media screen and (max-width: 980px){
#sipequ{
display: none !important;
}
#responsE{
display: none;
}
}
/*Si la pantalla es mayor a 981px*/
@media screen and (min-width: 981px){
#sigran{
display: none !important;
}
#responsD{
display:none;
}
}
</style>
<div id="sigran" data-src="images/slider/oro-orodo.png">
<div class="camera_caption fadeFromBottom cap1">10 años haciendo realidad sus proyectos de distribución.</div>
</div>
<div id="sipequ" data-src="images/slider/oro-orodo_2.png">
<div class="camera_caption fadeFromBottom cap1">10 años haciendo realidad sus proyectos de distribución.</div>
</div>
display: none !important;
}
}
/*Si la pantalla es mayor a 981px*/
@media screen and (min-width: 981px){
#sigran{
display: none !important;
}
}