CSSScopeRule

The CSSScopeRule interface of the CSS Object Model represents a CSS @scope at-rule.

MDN Reference

Properties

Link copied to clipboard

The cssRules property of the a collection of CSSRule objects.

Link copied to clipboard

The cssText property of the CSSRule interface returns the actual text of a CSSStyleSheet style-rule.

Link copied to clipboard
val end: String?

The end property of the CSSScopeRule interface returns a string containing the value of the @scope at-rule's scope limit.

Link copied to clipboard

The parentRule property of the CSSRule interface returns the containing rule of the current rule if this exists, or otherwise returns null.

Link copied to clipboard

The parentStyleSheet property of the the current rule is defined.

Link copied to clipboard

The start property of the CSSScopeRule interface returns a string containing the value of the @scope at-rule's scope root.

Functions

Link copied to clipboard
fun deleteRule(index: Int)

The deleteRule() method of the rules.

Link copied to clipboard
fun insertRule(rule: String, index: Int = definedExternally): Int

The insertRule() method of the ``js-nolint insertRule(rule) insertRule(rule, index) `` - rule - : A string - index MISSING: optional_inline - : An optional index at which to insert the rule; defaults to 0.