The :playing
CSS pseudo-class selector represents the playback state of an element that is playable, such as <audio>
or <video>
, when that element is "playing". An element is considered to be playing if it is currently playing the media resource, or if it has temporarily stopped for reasons other than user intent (such as :buffering
or :stalled
).
On this page
:playing
Syntax
css
:playing {
/* ... */
}
Examples
CSS
css
:playing {
border: 5px solid green;
}
Specifications
Specification |
---|
Selectors Level 4 # selectordef-playing |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
:playing |
No | No | No | No | No | 15.4 | No | No | No | No | 15.4 | No |
See also
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/:playing