Firefox Tomorrow

web api instance property

VTTCue: position property

View on MDN ↗

The position property of the VTTCue interface represents the indentation of the cue within the line.

Value

A number, or "auto" representing the indentation of the cue within the line.

Examples

In the following example a new VTTCue is created, then the value of position is set to 2. The value is then printed to the console.

let video = document.querySelector("video");
let track = video.addTextTrack("captions", "Captions", "en");
track.mode = "showing";

let cue = new VTTCue(0, 0.9, "Hildy!");
cue.position = "2";
console.log(cue.position);

track.addCue(cue);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.