Reputation: 59
I need to fix responsiveness of website on this fixed-width width:360px;
. But I can't figure out the media query to use.
Will it be @media only screen and (width:360px)
or will this will work
@media all and (max-width: 362px) and (min-width:361px)
?
Upvotes: 3
Views: 5100
Reputation: 362
yes you can use @media only screen and (width:360px){}
it will work
Upvotes: 5