newbie_007
newbie_007

Reputation: 59

Media query for one fixed resolution

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

Answers (1)

Muthukumar
Muthukumar

Reputation: 362

yes you can use @media only screen and (width:360px){} it will work

Upvotes: 5

Related Questions