CSSConditionRule: conditionText property

The read-only conditionText property of the CSSConditionRule interface returns or sets the text of the CSS rule.

Value

A string.

Examples

The following example demonstrates reading the value of conditionText on a CSSMediaRule which implements the CSSConditionRule interface.

css
@media (min-width: 500px) {
  body {
    color: blue;
  }
}
js
const targetRule = document.styleSheets[0].cssRules[0];
console.log(targetRule.conditionText); // "(min-width: 500px)"

Specifications

Specification
CSS Conditional Rules Module Level 3
# dom-cssconditionrule-conditiontext

Browser compatibility

BCD tables only load in the browser

See also