Back to Content

CSSPositionValue: x property

files/en-us/web/api/csspositionvalue/x/index.md

latest929 B
Original Source

{{deprecated_header}}{{APIRef("CSS Typed Object Model API")}}{{Non-standard_header}}

The x property of the {{domxref("CSSPositionValue")}} interface returns the item's position along the web page's horizontal axis.

Value

A {{domxref('CSSNumericValue')}}.

Examples

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

js
let someDiv = 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

{{Compat}}

See also