CSSPositionTryRule: Eigenschaft name

Limited availability

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

Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig, bevor Sie diese produktiv verwenden.

Die name schreibgeschützte Eigenschaft der CSSPositionTryRule-Schnittstelle repräsentiert den Namen der Position-try-Fallback-Option, die durch die @position-try-At-Regel im <dashed-ident> angegeben wird.

Wert

Ein String.

Beispiele

Das CSS enthält eine @position-try-At-Regel mit einem Namen --custom-bottom und drei Deskriptoren.

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.name); // "--custom-bottom"

Spezifikationen

Specification
CSS Anchor Positioning
# dom-csspositiontryrule-name

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch