Reputation: 245
I know that there are lots of questions that look like this one, but nothing has worked for me so far. I have an unique CSS document for a whole website and, at the bottom of this document, I have this:
@media (max-width: 1250){
#opcoes{
display: none;
}
#expresso{
display: none;
}
}
Basically, my site template is designed like this:
<body>
<div id = "menu">
</div>
<div id = "principal>
</div>
<div id = "opcoes">
<div id = "expresso">
</div>
</div>
</body>
Apparently, my "opcoes" and "expresso" div are not disappearing when I reduce the browser width to less than 1250. What am I doing wrong?
Upvotes: 0
Views: 31
Reputation: 90287
You're missing the length-unit
in your @media
condition. Use:
@media (max-width: 1250px){...}
Upvotes: 2