Reputation: 353
I have web app for making music from javascript. But I have problem with display: none
of my .musicBox
class.
Here are the index.html code with all important styles & scripts.
@media screen and (max-width: 520px) {
.rotateDevice {
display: block;
}
.toneBox {
display: none;
}
}
When I resize the window to under 520px
width it will 'display: none' my color Boxes. But why it didn't?
Upvotes: 1
Views: 302
Reputation: 77
Try out this may be it would help you:
Visibility: none;
Upvotes: 0
Reputation: 6470
There is something missing above this media query.
Remove the .a
above it.
Upvotes: 1