CSSPositionTryRule: style property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The style
read-only property of the CSSPositionTryRule
interface returns a CSSPositionTryDescriptors
object representing the declarations set in the body of the @position-try
at-rule.
Value
A CSSPositionTryDescriptors
object.
Examples
The CSS includes a @position-try
at-rule with a name of --custom-right
and three descriptors.
css
@position-try --custom-bottom {
top: anchor(bottom);
min-width: 100px;
margin: 10px 0 0 0;
}
js
const myRules = document.styleSheets[0].cssRules;
const tryOption = myRules[0]; // a CSSPositionTryRule
console.log(tryOption.style.top); // "anchor(bottom)"
console.log(tryOption.style["min-width"]); // "100px"
console.log(tryOption.style.positionArea); // ""; no position-area specified
Specifications
Specification |
---|
CSS Anchor Positioning # dom-csspositiontryrule-style |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
style |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
- Experimental. Expect behavior to change in the future.
- See implementation notes.
- User must explicitly enable this feature.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.