Reputation: 300
I want to change the CSS of a div in a particular resolution.
For example:
@media only (width: 320px){do something}
I tried with that code but didn't work.
Thanks!
Upvotes: 0
Views: 53
Reputation: 7036
You missed something...
@media only screen and (width: 320px) {do something}
Upvotes: 1