--- title: CSSConditionRule slug: Web/API/CSSConditionRule translation_of: Web/API/CSSConditionRule ---
{{ APIRef("CSSOM") }}
CSSConditionRule 对象表示单个条件 CSS 规则, 由条件和语句块组成。继承至 {{domxref("CSSGroupingRule")}}.
从它派生的两个对象 : {{domxref("CSSMediaRule")}} and {{domxref("CSSSupportsRule")}}.
The syntax is described using the WebIDL format.
interface CSSConditionRule : CSSGroupingRule {
attribute DOMString conditionText;
}
The CSSConditionRule derives from {{domxref("CSSRule")}}, {{domxref("CSSGroupingRule")}} and inherits all properties of these classes. It has one specific property:
The CSSConditionRule derives from {{domxref("CSSRule")}}, {{domxref("CSSGroupingRule")}} and inherits all methods of these classes. It has no specific property of its own.
| Specification | Status | Comment |
|---|---|---|
| {{ SpecName('CSS3 Conditional', '#the-cssconditionrule-interface', 'CSSConditionRule') }} | {{ Spec2('CSS3 Conditional') }} | Initial definition. |
{{Compat("api.CSSConditionRule")}}