From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/ru/web/api/cssconditionrule/index.html | 113 +++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 files/ru/web/api/cssconditionrule/index.html (limited to 'files/ru/web/api/cssconditionrule/index.html') diff --git a/files/ru/web/api/cssconditionrule/index.html b/files/ru/web/api/cssconditionrule/index.html new file mode 100644 index 0000000000..9dd669526f --- /dev/null +++ b/files/ru/web/api/cssconditionrule/index.html @@ -0,0 +1,113 @@ +--- +title: CSSConditionRule +slug: Web/API/CSSConditionRule +translation_of: Web/API/CSSConditionRule +--- +

{{ APIRef("CSSOM") }}

+ +

An object implementing the CSSConditionRule interface represents a single condition CSS at-rule, which consists of a condition and a statement block. It is a child of {{domxref("CSSGroupingRule")}}.

+ +

Two objects derive from it : {{domxref("CSSMediaRule")}} and {{domxref("CSSSupportsRule")}}.

+ +

Syntax

+ +

The syntax is described using the WebIDL format.

+ +
interface CSSConditionRule : CSSGroupingRule {
+    attribute DOMString conditionText;
+}
+
+ +

Properties

+ +

The CSSConditionRule derives from {{domxref("CSSRule")}}, {{domxref("CSSGroupingRule")}} and inherits all properties of these classes. It has one specific property:

+ +
+
{{domxref("CSSConditionRule.conditionText")}}
+
Represents the text of the condition of the rule.
+
+ +

Methods

+ +

The CSSConditionRule derives from {{domxref("CSSRule")}}, {{domxref("CSSGroupingRule")}} and inherits all methods of these classes. It has no specific property of its own.

+ +

Specifications

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('CSS3 Conditional', '#the-cssconditionrule-interface', 'CSSConditionRule') }}{{ Spec2('CSS3 Conditional') }}Initial definition.
+ +

Browser compatibility

+ +

{{ CompatibilityTable() }}

+ +
+ + + + + + + + + + + + + + + + + + + + + +
FeatureChromeEdgeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basic support{{CompatChrome(56.0)}}{{CompatVersionUnknown}}{{ CompatGeckoDesktop("20.0") }}{{ CompatNo() }}{{CompatOpera(43)}}{{ CompatNo() }}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
FeatureAndroid WebviewEdgeFirefox Mobile (Gecko)IE PhoneOpera MobileSafari MobileChrome for Android
Basic support{{CompatChrome(56.0)}}{{CompatVersionUnknown}}{{ CompatGeckoMobile("20.0") }}{{ CompatNo() }}{{CompatOperaMobile(43)}}{{ CompatNo() }}{{CompatChrome(56.0)}}
+
+ +

See also

+ + -- cgit v1.2.3-54-g00ecf