Since September 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The update CSS media feature can be used to test how frequently (if at all) the output device is able to modify the appearance of content once rendered.
noneOnce it has been rendered, the layout can no longer be updated. Example: documents printed on paper.
slowThe layout may change dynamically according to the usual rules of CSS, but the output device is not able to render or display changes quickly enough for them to be perceived as a smooth animation. Examples: e-book readers or severely underpowered devices.
fastThe layout may change dynamically according to the usual rules of CSS, and the output device is not unusually constrained in speed, so regularly-updating things like CSS Animations can be used. Example: computer screens.
<p> If this text animates for you, your browser supports `update` and you are using a fast-updating device. </p>
@keyframes jiggle {
from {
transform: translateY(0);
}
to {
transform: translateY(25px);
}
}
@media (update: fast) {
p {
animation: 1s jiggle linear alternate infinite;
}
}
| Specification |
|---|
| Media Queries Level 4> # update> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
update |
113 | 113 | 102 | 99 | 17 | 113 | 102 | 76 | 17 | 23.0 | 113 | 17 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/@media/update