web api instance property
CSSPositionValue: y property
The y property of the
CSSPositionValue interface returns the item’s position along the
vertical axis.
Value
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.