Back to Content

VTTCue: position property

files/en-us/web/api/vttcue/position/index.md

latest725 B
Original Source

{{APIRef("WebVTT")}}

The position property of the {{domxref("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 {{domxref("VTTCue")}} is created, then the value of position is set to 2. The value is then printed to the console.

js
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

{{Specifications}}

Browser compatibility

{{Compat}}