The width CSS descriptor is shorthand for setting both the min-width and the max-width of the viewport. By providing one viewport length value, that value will determine both the min-width and the max-width to the value provided.
If two viewport values are provided the first value will be set to the min-width and the second value will be set max-width.
| Related at-rule | @viewport |
|---|---|
| Initial value | as each of the properties of the shorthand: |
| Percentages | as each of the properties of the shorthand: |
| Media | as each of the properties of the shorthand:
|
| Computed value | as each of the properties of the shorthand: |
| Canonical order | order of appearance in the formal grammar of the values |
/* An example with one viewport value: */
@viewport {
width: 320px;
}
/* An example with two viewport values: */
@viewport {
width: 320px, 120px;
}
auto<length><percentage>auto | <length> | <percentage>
| Specification | Status | Comment |
|---|---|---|
| CSS Device Adaptation The definition of '"min-width" descriptor' in that specification. | Working Draft | Initial definition |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | 29 | ? | No | 10
|
16
|
No |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | 4.4 | 29 | ? | No | 16
|
No | Yes |
© 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/@viewport/width