Is it possible to hide content between specified window widths, but in more than one case?
This is the code from my EXTRA.css file:
That works correctly, but I wish to extend the behaviour further. I wish to hide the content again at 799px until "0px".
This is the code from my EXTRA.css file:
Code:
.newImage
{
text-align: center;
}
@media (max-width: 952px) and (min-width: 800px),
{
.newImage {
display: none;
visibility: hidden;
}
}
That works correctly, but I wish to extend the behaviour further. I wish to hide the content again at 799px until "0px".