Firefox Tomorrow

web api instance property

CSSPositionValue: y property

View on MDN ↗

The y property of the CSSPositionValue interface returns the item’s position along the vertical axis.

Value

A CSSNumericValue.

Examples

The following example positions a container <div> 5 pixels from the top and 10 pixels from the left of the page.

let replaceEl = document.getElementById("container");
let position = new CSSPositionValue(CSS.px(5), CSS.px(10));

someDiv.attributeStyleMap.set("object-position", position);
console.log(position.x.value, position.y.value);

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also