CSSScopeRule

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

CSSRule CSSGroupingRule CSSScopeRule

Instance properties

This interface inherits properties from its parent, CSSGroupingRule.

end

Returns a string containing the value of the @scope at-rule's scope limit.

start

Returns a string containing the value of the @scope at-rule's scope root.

Instance methods

This interface inherits methods from its parent, CSSGroupingRule.

Examples

Accessing @scope information in JavaScript

Assuming the following is the only stylesheet attached to a document:

css
@scope (.outer) to (.inner) {
  :scope {
    background: yellow;
  }
}

The following JavaScript could be used to access information about the contained @scope block:

js
const scopeBlock = document.styleSheets[0].cssRules[0];

console.log(scopeBlock.start); // Returns ".outer"
console.log(scopeBlock.end); // Returns ".inner"

Specifications

Specification
CSS Cascading and Inheritance Level 6
# cssscoperule

Browser compatibility

BCD tables only load in the browser

See also