diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/css/_colon_where | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/css/_colon_where')
-rw-r--r-- | files/ja/web/css/_colon_where/index.html | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/files/ja/web/css/_colon_where/index.html b/files/ja/web/css/_colon_where/index.html new file mode 100644 index 0000000000..4516b847d0 --- /dev/null +++ b/files/ja/web/css/_colon_where/index.html @@ -0,0 +1,134 @@ +--- +title: ':where()' +slug: 'Web/CSS/:where' +tags: + - ':where' + - CSS + - Experimental + - NeedsBrowserCompatibility + - NeedsContent + - NeedsExample + - Pseudo-class + - Reference + - Selector + - Selectors + - Web + - セレクター + - 擬似クラス +translation_of: 'Web/CSS/:where' +--- +<div>{{CSSRef}}{{SeeCompatTable}}</div> + +<p><strong><code>:where()</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>関数で、選択肢列挙を引数として取り、列挙されたセレクターのうちの何れかに当てはまるすべての要素を選択します。</p> + +<p><code>:where()</code> と {{CSSxRef(":is", ":is()")}} の違いは、 <code>:where()</code> は<a href="/ja/docs/Web/CSS/Specificity">詳細度</a>が常に 0 であるのに対して、 <code>:is()</code> は引数内で最も詳細度の高いセレクターの詳細度を取ります。</p> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Comparing_where_and_is" name="Comparing_where_and_is">:where() と :is() の比較</h3> + +<p>この例では <code>:where()</code> がどのように作用するのかを示し、 <code>:where()</code> と <code>:is()</code> の違いも説明しています。</p> + +<p>以下のような HTML を想定してください。</p> + +<pre class="brush: html notranslate"><article> + <h2>:is()-styled links</h2> + <section class="is-styling"> + <p>Here is my main content. This <a href="https://mozilla.org">contains a link</a>. + </section> + + <aside class="is-styling"> + <p>Here is my aside content. This <a href="https://developer.mozilla.org">also contains a link</a>. + </aside> + + <footer class="is-styling"> + <p>This is my footer, also containing <a href="https://github.com/mdn">a link</a>. + </footer> +</article> + +<article> + <h2>:where()-styled links</h2> + <section class="where-styling"> + <p>Here is my main content. This <a href="https://mozilla.org">contains a link</a>. + </section> + + <aside class="where-styling"> + <p>Here is my aside content. This <a href="https://developer.mozilla.org">also contains a link</a>. + </aside> + + <footer class="where-styling"> + <p>This is my footer, also containing <a href="https://github.com/mdn">a link</a>. + </footer> +</article></pre> + +<p>このやや矛盾した例では、2つの記事があり、それぞれがセクション、脇、フッターを含んでいます。これらの記事は、子要素をマークするために使われるクラスによって異なります。</p> + +<p>中のリンクの選択をより簡単にして、しかし区別できるようにするために、次のように <code>:is()</code> や <code>:where()</code> を使うことが<em>できます</em>。</p> + +<pre class="brush: css notranslate">html { + font-family: sans-serif; + font-size: 150%; +} + +:is(section.is-styling, aside.is-styling, footer.is-styling) a { + color: red; +} + +:where(section.where-styling, aside.where-styling, footer.where-styling) a { + color: orange; +}</pre> + +<p>しかし、後からシンプルなセレクターを使ってフッターのリンクの色を上書きしたい場合はどうすればいいのでしょうか?</p> + +<pre class="brush: css notranslate">footer a { + color: blue; +}</pre> + +<p>これは赤いリンクに作用しません。 <code>:is()</code> の中のセレクターは全体のセレクターの詳細度で算出され、クラスセレクターは要素セレクターよりも高い詳細度を持っているからです。</p> + +<p>しかし、 <code>:where()</code> 内のセレクターは詳細度が 0 なので、オレンジ色のフッターリンクは単純セレクターによって上書きされてしまいます。 + +</p><p>結果は以下で見ることができます (ただし、現在のところ <code>:is()</code> と <code>:where()</code> は既定では Firefox Nightly のバージョン 77 以降では有効になっているだけで、他のバージョンの Firefox では <code>layout.css.is-where-selectors.enabled</code> の設定で隠されています)。</p> + +<p><strong>注</strong>: この例は GitHub からも見ることができます。 <a href="https://mdn.github.io/css-examples/is-where/">is-where</a> を参照してください。</p> + +<p>{{EmbedLiveSample('Examples', '100%', 600)}}</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox notranslate">{{CSSSyntax}}</pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("CSS4 Selectors", "#zero-matches", ":where()")}}</td> + <td>{{Spec2("CSS4 Selectors")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div> +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("css.selectors.where")}}</p> +</div> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{CSSxRef(":is", ":is()")}} {{Experimental_Inline}}</li> + <li><a href="/ja/docs/Web/CSS/Selector_list">選択子列挙</a></li> + <li><a href="/ja/docs/Web/Web_Components">ウェブコンポーネント</a></li> +</ul> |