The width
CSS media feature can be used to test the width of the viewport (or the page box, for paged media).
The width
feature is specified as a <length>
value representing the viewport width. It is a range feature, meaning that you can also use the prefixed min-width
and max-width
variants to query minimum and maximum values, respectively.
<div>Watch this element as you resize your viewport's width.</div>
/* Exact width */ @media (width: 360px) { div { color: red; } } /* Minimum width */ @media (min-width: 35rem) { div { background: yellow; } } /* Maximum width */ @media (max-width: 50rem) { div { border: 2px solid blue; } }
Specification | Status | Comment |
---|---|---|
Media Queries Level 4 The definition of 'width' in that specification. | Candidate Recommendation | The value can now be negative, in which case it computes to false. |
Media Queries The definition of 'width' in that specification. | Recommendation | Initial definition. The value must be nonnegative. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | ? | Yes | 9 | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | ? | ? | ? | ? | ? | ? | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/@media/width