--- title: '@supports' slug: Web/CSS/@supports tags: - At-rule - CSS - Layout - Reference - Web - supports translation_of: Web/CSS/@supports ---
@supports
は CSS の アット規則で、宣言をブラウザーが1つまたは複数の特定の CSS 機能に対応しているかによって、宣言を指定することができます。これは機能クエリと呼ばれます。規則はコードの最上位または他の条件付きグループアット規則の中に配置することができます。
@supports (display: grid) { div { display: grid; } }
@supports not (display: grid) { div { float: right; } }
JavaScript では @supports
は CSS オブジェクトモデルインターフェイスの {{DOMxRef("CSSSupportsRule")}} からアクセスできます。
@supports
アット規則は、ステートメントのブロックを対応条件に関連付けます。対応条件は1つまたは複数の名前と値の組を結合条件 (and
)、非結合条件(or
)、否定 (not
) で組み合わせたものです。演算子の結合順位は、括弧を使用して変更できます。
もっとも基本的な対応条件は、単純な宣言 (プロパティ名に続けて、コロンで区切って値) です。宣言は括弧で囲む必要があります。以下の例は、ブラウザーが {{CSSxRef("transform-origin")}} プロパティの値として 5% 5%
を有効とみなすのであれば true を返します。
@supports (transform-origin: 5% 5%) {}
第二の基本的な対応状況は関数の対応であり、これらの構文はすべてのブラウザーで対応されていますが、関数自体はまだ標準化の過程にあります。
selector()
{{Experimental_Inline}}ブラウザーがテストされたセレクターの構文に対応しているかどうかを検査します。以下の例は、ブラウザーが子結合子に対応していれば true を返します。
@supports selector(A > B) {}
not
演算子は、新たな式を作成するために任意の式の前に置くことができ、元の式を否定します。以下の例は、ブラウザーが {{CSSxRef("transform-origin")}} プロパティの値として 10em 10em 10em
を有効とみなさないのであれば true を返します。
@supports not (transform-origin: 10em 10em 10em) {}
他の演算子と同様に、 not
演算子はどれだけ複雑な宣言にも適用できます。以下の例はすべて有効な式です。
@supports not (not (transform-origin: 2px)) {} @supports (display: grid) and (not (display: inline-grid)) {}
注: not
演算子が最上位にある場合は、括弧でくくる必要はありません。 and
や or
といった他の演算子と組み合わせるときは、括弧が必須です。
and
演算子は 2 つの式から、元の式の論理積で構成される新たな式を作成します。元の式の両方が true になる場合に限り、新たな式が true になります。以下の例では 2 つの式が同時に true になる場合に限り、全体の式も true になります。
@supports (display: table-cell) and (display: list-item) {}
括弧を増やすことなく、複数の論理積を並記することができます。以下の式はどちらも等価です。
@supports (display: table-cell) and (display: list-item) and (display:run-in) {} @supports (display: table-cell) and ((display: list-item) and (display:run-in)) {}
or
演算子は 2 つの式から、元の式の論理和で構成される新たな式を作成します。元の式の一方または両方が true になる場合に限り、新たな式が true になります。以下の例では 2 つの式の少なくとも 1 つが true になる場合に限り、全体の式も true になります。
@supports (transform-style: preserve) or (-moz-transform-style: preserve) {}
括弧を増やすことなく、複数の論理和を並記することができます。以下の式はどちらも等価です。
@supports (transform-style: preserve) or (-moz-transform-style: preserve) or (-o-transform-style: preserve) or (-webkit-transform-style: preserve) {} @supports (transform-style: preserve-3d) or ((-moz-transform-style: preserve-3d) or ((-o-transform-style: preserve-3d) or (-webkit-transform-style: preserve-3d))) {}
注: and
演算子と or
演算子を両方とも使用するときは、これらを適用する順序を定義するために括弧を使用しなければなりません。そうしなければ、アット規則全体を無視させる無効な条件になります。
@supports (animation-name: test) { … /* 接頭辞がないプロパティでアニメーションに対応する場合に適用する CSS */ @keyframes { /* 他のアット規則を含むことができる */ … } }
@supports ((perspective: 10px) or (-moz-perspective: 10px) or (-webkit-perspective: 10px) or (-ms-perspective: 10px) or (-o-perspective: 10px)) { … /* 接頭辞つきを含めて 3D transforms を対応する場合に適用する CSS */ }
@supports not ((text-align-last: justify) or (-moz-text-align-last: justify)) { … /* text-align-last:justify をシミュレートするために適用する CSS */ }
@supports (--foo: green) { body { color: var(--varName); } }
{{SeeCompatTable}}
/* この規則は :is() に対応していないブラウザーでは適用されません */ :is(ul, ol) > li { … /* :is(…) セレクターに対応している場合に CSS が適用される */ } @supports not selector(:is(a, b)) { /* :is() に対応していない場合の代替 */ ul > li, ol > li { … /* 上記のものは :is(…) に対応していないブラウザーのために展開しています */ } } /* Note: By far, there's no browser that supports the `of` argument of :nth-child(…) */ @supports selector(:nth-child(1n of a, b)) { /* This rule needs to be inside the @supports block, otherwise it will be partially applied in browsers which don't support the `of` argument of :nth-child(…) is supported */ :is( :nth-child(1n of ul, ol) a, details > summary ) { … /* CSS applied when the :is(…) selector and the `of` argument of :nth-child(…) are both supported */ } }
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("CSS4 Conditional", "#at-supports-ext", "@supports")}} | {{Spec2("CSS4 Conditional")}} | selector() 関数を追加 |
{{SpecName("CSS3 Conditional", "#at-supports", "@supports")}} | {{Spec2("CSS3 Conditional")}} | 初回定義 |
{{Compat("css.at-rules.supports")}}