Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. CSSPositionTryRule
  4. style

CSSPositionTryRule: style property

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

The read-onlystyle property of theCSSPositionTryRule interface contains aCSSPositionTryDescriptors object representing the descriptors available in the@position-try rule's body.

Value

ACSSPositionTryDescriptors object.

Although thestyle property itself is read-only in the sense that you can't replace theCSSPositionTryDescriptors object, you can still assign to thestyle property directly, which is equivalent to assigning to itscssText property. You can also modify theCSSPositionTryDescriptors object using thesetProperty() andremoveProperty() methods.

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-top: 10px;}
js
const myRules = document.styleSheets[0].cssRules;const tryOption = myRules[0]; // a CSSPositionTryRuleconsole.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

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp