CSS ::cue Selector

❮ Previous Selectors Next ❯

Example

video::cue {
  font-size: 32px;
  color: yellow;
  background: red;
}

Meaning

The ::cue selector matches WebVTT cues within a selected element.

This can be used to style captions and other cues in media with VTT tracks.

The properties are applied to the entire set of cues as if they were a single unit.

The only exception is that background and its longhand properties apply to each cue individually, to avoid creating boxes and obscuring unexpectedly large areas of the media.

Version: CSS3




Standard Syntax

::cue | ::cue(selector) {
  css declarations;
}



Browser Support

The numbers in the table specify the first browser version that fully supports the property.




Status







Permitted properties

Rules whose selectors include this element may only use the following CSS properties:

❮ Previous Selectors Next ❯