--- title: ':is() (:matches(), :any())' slug: 'Web/CSS/:is' tags: - ':is' - CSS - Experimental - Pseudo-class - Reference - Selector - Selectors - Web translation_of: 'Web/CSS/:is' ---
{{CSSRef}}
注: :matches()
は :is()
に改名されました。 (CSSWG issue #3258)
CSS の :is()
擬似クラス関数は、セレクターのリストを引数に取り、リスト中のセレクターの何れか一つに当てはまる要素をすべて選択します。数多くのセレクターを小さくまとめて書くのに便利です。
/* header, main, footer 要素の中の段落で マウスポインタが通過中のものをすべて選択 */ :is(header, main, footer) p:hover { color: red; cursor: pointer; } /* 上記のものは以下のものと同じ */ header p:hover, main p:hover, footer p:hover { color: red; cursor: pointer; }
なお、現在のところ、ブラウザーはこの機能を :matches()
や、古いバージョンの Chrome, Firefox, Safari では、さらに古い接頭辞付きの擬似クラス — :any()
で対応しています。 :any()
は :matches()
/:is()
とまったく同じものとして動作しますが、ベンダー接頭辞が必要であり、複合セレクターに対応していません。
後方互換性のために古い擬似クラスを使用することができます。
/* -*-any() および :matches() と後方互換性のあるバージョン (無効なセレクターがあるとルール全体が無効になるため、 セレクターを単一のルールにグループ化することはできません。) */ :-webkit-any(header, main, footer) p:hover { color: red; cursor: pointer; } :-moz-any(header, main, footer) p:hover { color: red; cursor: pointer; } :matches(header, main, footer) p:hover { color: red; cursor: pointer; }
仕様では :is()
と :where()
が省略可能なセレクターリストを受け入れることを定義しています。
CSS でセレクターリストを使用している場合、セレクターのどれかが無効な場合、リスト全体が無効とみなされます。 :is()
や :where()
を使用している場合、1 つでも解釈に失敗するとセレクターのリスト全体が無効とみなされるのではなく、不正なセレクターや対応していないセレクターは無視され、他のセレクターが使用されます。
:is(:valid, :unsupported) { ... }
:unsupported
をに対応していないブラウザーでも、正しく解釈して :valid
にマッチします。
:valid, :unsupported { ... }
:unupported
に対応していないブラウザーでは、 :valid
に対応していても無視されます。
<header> <p>This is my header paragraph</p> </header> <main> <ul> <li><p>This is my first</p><p>list item</p></li> <li><p>This is my second</p><p>list item</p></li> </ul> </main> <footer> <p>This is my footer paragraph</p> </footer>
:-webkit-any(header, main, footer) p:hover { color: red; cursor: pointer; } :-moz-any(header, main, footer) p:hover { color: red; cursor: pointer; } :matches(header, main, footer) p:hover { color: red; cursor: pointer; } :is(header, main, footer) p:hover { color: red; cursor: pointer; }
let matchedItems; try { matchedItems = document.querySelectorAll(':is(header, main, footer) p'); } catch(e) { try { matchedItems = document.querySelectorAll(':matches(header, main, footer) p'); } catch(e) { try { matchedItems = document.querySelectorAll(':-webkit-any(header, main, footer) p'); } catch(e) { try { matchedItems = document.querySelectorAll(':-moz-any(header, main, footer) p'); } catch(e) { console.log('Your browser doesn\'t support :is(), :matches(), or :any()'); } } } } matchedItems.forEach(applyHandler); function applyHandler(elem) { elem.addEventListener('click', function(e) { alert('This paragraph is inside a ' + e.target.parentNode.nodeName); }); }
{{EmbedLiveSample("Cross-browser_example", "100%", 300)}}
:is()
擬似クラスは CSS セレクターをとても簡潔にすることができます。例えば以下の CSS の場合、
/* 3層(以上)の順序なしリストに四角形を使用 */ ol ol ul, ol ul ul, ol menu ul, ol dir ul, ol ol menu, ol ul menu, ol menu menu, ol dir menu, ol ol dir, ol ul dir, ol menu dir, ol dir dir, ul ol ul, ul ul ul, ul menu ul, ul dir ul, ul ol menu, ul ul menu, ul menu menu, ul dir menu, ul ol dir, ul ul dir, ul menu dir, ul dir dir, menu ol ul, menu ul ul, menu menu ul, menu dir ul, menu ol menu, menu ul menu, menu menu menu, menu dir menu, menu ol dir, menu ul dir, menu menu dir, menu dir dir, dir ol ul, dir ul ul, dir menu ul, dir dir ul, dir ol menu, dir ul menu, dir menu menu, dir dir menu, dir ol dir, dir ul dir, dir menu dir, dir dir dir { list-style-type: square; }
... これを次のように置き換えることができます。
/* 3層(以上)の順序なしリストに四角形を使用 */ :is(ol, ul, menu, dir) :is(ol, ul, menu, dir) ul, :is(ol, ul, menu, dir) :is(ol, ul, menu, dir) menu, :is(ol, ul, menu, dir) :is(ol, ul, menu, dir) dir { list-style-type: square; }
:is()
擬似クラスは、 HTML5 のセクションと見出しを扱うときに特に便利です。 {{HTMLElement("section")}}, {{HTMLElement("article")}}, {{HTMLElement("aside")}}, {{HTMLElement("nav")}} は互いによく入れ子になりますので、 :is()
がないと、1つ1つを選択してスタイルを適用するのが難しくなります。
例えば、 :is()
を使わずに、異なる深さの {{HTMLElement("h1")}} 要素にスタイルを適用すると、とても複雑になります。
/* Level 0 */ h1 { font-size: 30px; } /* Level 1 */ section h1, article h1, aside h1, nav h1 { font-size: 25px; } /* Level 2 */ section section h1, section article h1, section aside h1, section nav h1, article section h1, article article h1, article aside h1, article nav h1, aside section h1, aside article h1, aside aside h1, aside nav h1, nav section h1, nav article h1, nav aside h1, nav nav h1 { font-size: 20px; } /* Level 3 */ /* ... 考えたくありません! */
:is()
を使用すると、ずっと簡単になります。
/* Level 0 */ h1 { font-size: 30px; } /* Level 1 */ :is(section, article, aside, nav) h1 { font-size: 25px; } /* Level 2 */ :is(section, article, aside, nav) :is(section, article, aside, nav) h1 { font-size: 20px; } /* Level 3 */ :is(section, article, aside, nav) :is(section, article, aside, nav) :is(section, article, aside, nav) h1 { font-size: 15px; }
この2つの違いは、 :is()
がセレクター全体の詳細度にカウントされるのに対し、 {{CSSxRef(":where", ":where()")}} は詳細度の値が 0 であることです。これは、 :where()
のリファレンスページにある例で示されています。
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("CSS4 Selectors", "#matches-pseudo", ":is()")}} | {{Spec2("CSS4 Selectors")}} | 初回定義 |
{{Compat("css.selectors.is")}}
:is()
と同様ですが、詳細度が0です。