aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/_colon_host-context()/index.md
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-19 01:34:22 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-26 08:56:49 +0900
commitc0d290de6a7d9391ab301be76fcf7e28e6a7547c (patch)
tree37366c9b3a4f753b31082b9b68fb8a6f3447f909 /files/ja/web/css/_colon_host-context()/index.md
parent96e7dc4c05c6e47c41088f38bfd6d216fc694df5 (diff)
downloadtranslated-content-c0d290de6a7d9391ab301be76fcf7e28e6a7547c.tar.gz
translated-content-c0d290de6a7d9391ab301be76fcf7e28e6a7547c.tar.bz2
translated-content-c0d290de6a7d9391ab301be76fcf7e28e6a7547c.zip
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/_colon_host-context()/index.md')
-rw-r--r--files/ja/web/css/_colon_host-context()/index.md109
1 files changed, 48 insertions, 61 deletions
diff --git a/files/ja/web/css/_colon_host-context()/index.md b/files/ja/web/css/_colon_host-context()/index.md
index cd6c5f9b94..e284a06e22 100644
--- a/files/ja/web/css/_colon_host-context()/index.md
+++ b/files/ja/web/css/_colon_host-context()/index.md
@@ -1,31 +1,31 @@
---
title: ':host-context()'
-slug: 'Web/CSS/:host-context()'
+slug: Web/CSS/:host-context()
tags:
- ':host-context()'
- CSS
- - Experimental
- - Layout
- - Pseudo-class
- - Reference
- - Selector
- - Web
-translation_of: 'Web/CSS/:host-context()'
+ - 実験的
+ - レイアウト
+ - 擬似クラス
+ - リファレンス
+ - セレクター
+ - ウェブ
+browser-compat: css.selectors.host-context
+translation_of: Web/CSS/:host-context()
---
<div>{{CSSRef}}</div>
-<p><span class="seoSummary"><strong><code>:host-context()</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>関数で、内部で使用される CSS を含む<a href="/ja/docs/Web/Web_Components/Using_shadow_DOM">シャドウ DOM</a> のシャドウホストを選択します (そのため、シャドウ DOM の中のカスタム要素を選択することができます)。 — しかし、関数の引数として与えられたセレクターがシャドウホストの祖先に一致した場合のみです。</span></p>
+**`:host-context()`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)関数で、内部で使用される CSS を含む[シャドウ DOM](/ja/docs/Web/Web_Components/Using_shadow_DOM) のシャドウホストを選択します (そのため、シャドウ DOM の中のカスタム要素を選択することができます)。 — しかし、関数の引数として与えられたセレクターがシャドウホストの祖先に一致した場合のみです。
-<p><span class="seoSummary">言い換えれば、これによってカスタム要素やそのカスタム要素のシャドウ DOM 内のものは、外部 DOM 内の位置や、祖先要素に適用されたクラスや属性に基づいて、異なるスタイルを適用することができます。</span></p>
+言い換えれば、これによってカスタム要素やそのカスタム要素のシャドウ DOM 内のものは、外部 DOM 内の位置や、祖先要素に適用されたクラスや属性に基づいて、異なるスタイルを適用することができます。
-<p>典型的な使い方としては、子孫のセレクター式 (例えば <code>h1</code>) を使って、 <code>&lt;h1&gt;</code> の中にあるカスタム要素のインスタンスのみを選択することができます。もう一つの典型的な使用法は、内部要素が任意の子孫要素のクラスや属性に反応するようにすることです。例えば、 <code>.dark-theme</code> クラスが <code>&lt;body&gt;</code> に適用されたときに、異なるテキスト色を適用することができます。</p>
+典型的な使い方としては、子孫のセレクター式 (例えば `h1`) を使って、 `<h1>` の中にあるカスタム要素のインスタンスのみを選択することができます。もう一つの典型的な使用法は、内部要素が任意の子孫要素のクラスや属性に反応するようにすることです。例えば、 `.dark-theme` クラスが `<body>` に適用されたときに、異なるテキスト色を適用することができます。
-<div class="note">
-<p><strong>注</strong>: これはシャドウ DOM の外で使用した場合、効果がありません。</p>
-</div>
+> **Note:** これはシャドウ DOM の外で使用した場合、効果がありません。
-<pre class="brush: css no-line-numbers notranslate">/* Selects a shadow root host, only if it is
- a descendant of the selector argument given */
+```css
+/* 与えられたセレクター引数の子孫である場合のみ、
+ シャドウルートホストを選択します。 */
:host-context(h1) {
font-weight: bold;
}
@@ -34,8 +34,8 @@ translation_of: 'Web/CSS/:host-context()'
font-weight: bold;
}
-/* Changes paragraph text color from black to white when
- a .dark-theme class is applied to the document body */
+/* .dark-theme クラスが文書の body に適用されているとき、
+ 段落のテキストの色を黒から白に変更します。 */
p {
  color: #000;
}
@@ -43,25 +43,28 @@ p {
:host-context(body.dark-theme) p {
  color: #fff;
}
-</pre>
+```
-<h2 id="Syntax" name="Syntax">構文</h2>
+## 構文
{{CSSSyntax}}
-<h2 id="Examples" name="Examples">例</h2>
+## 例
-<h3 id="Selectively_styling_shadow_hosts" name="Selectively_styling_shadow_hosts">シャドウホストの選択的なスタイル付け</h3>
+### シャドウホストの選択的なスタイル付け
-<p>以下のスニペットは <a href="https://github.com/mdn/web-components-examples/tree/master/host-selectors">host-selectors example</a> から取ったものです。 (<a href="https://mdn.github.io/web-components-examples/host-selectors/">ライブ版もあります</a>).</p>
+以下のスニペットは [host-selectors の例](https://github.com/mdn/web-components-examples/tree/master/host-selectors)から取ったものです ([ライブ版もあります](https://mdn.github.io/web-components-examples/host-selectors/)。
-<p>この例には、単純なカスタム要素 — <code>&lt;context-span&gt;</code> — があり、テキストを囲むことができます。</p>
+この例には、単純なカスタム要素 — `<context-span>` — があり、テキストを囲むことができます。
-<pre class="brush: html notranslate">&lt;h1&gt;Host selectors &lt;a href="#"&gt;&lt;context-span&gt;example&lt;/context-span&gt;&lt;/a&gt;&lt;/h1&gt;</pre>
+```html
+<h1>Host selectors <a href="#"><context-span>example</context-span></a></h1>
+```
-<p>要素のコンストラクターの中で、 <code>style</code> および <code>span</code> 要素を生成し、 <code>span</code> の中をカスタム要素の内容で埋め、 <code>style</code> 要素をいくつかの CSS 規則で埋めます。</p>
+要素のコンストラクターの中で、 `style` および `span` 要素を生成し、 `span` の中をカスタム要素の内容で埋め、 `style` 要素をいくつかの CSS 規則で埋めます。
-<pre class="brush: js notranslate">let style = document.createElement('style');
+```js
+let style = document.createElement('style');
let span = document.createElement('span');
span.textContent = this.textContent;
@@ -74,37 +77,21 @@ style.textContent = 'span:hover { text-decoration: underline; }' +
':host-context(h1):after { content: " - no links in headers!" }' +
':host-context(article, aside) { color: gray; }' +
':host(.footer) { color : red; }' +
- ':host { background: rgba(0,0,0,0.1); padding: 2px 5px; }';</pre>
-
-<p><code>:host-context(h1) { font-style: italic; }</code> および <code>:host-context(h1):after { content: " - no links in headers!" }</code> の規則は <code>&lt;h1&gt;</code> の中にある <code>&lt;context-span&gt;</code> 要素 (このインスタンスのシャドウホスト) のインスタンスをスタイル付けします。これは設計上、 <code>&lt;h1&gt;</code> 内部にカスタム要素が現れるべきではないことを明確にするために使用しています。</p>
-
-<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('CSS Scope', '#host-selector', ':host-context()') }}</td>
- <td>{{ Spec2('CSS Scope') }}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("css.selectors.host-context")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li><a href="/ja/docs/Web/Web_Components">ウェブコンポーネント</a></li>
- <li>{{cssxref(":host")}}</li>
- <li>{{cssxref(":host()")}}</li>
-</ul>
+ ':host { background: rgba(0,0,0,0.1); padding: 2px 5px; }';
+```
+
+`:host-context(h1) { font-style: italic; }` および `:host-context(h1):after { content: " - no links in headers!" }` の規則は `<h1>` の中にある `<context-span>` 要素 (このインスタンスのシャドウホスト) のインスタンスをスタイル付けします。これは設計上、 `<h1>` 内部にカスタム要素が現れるべきではないことを明確にするために使用しています。
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- [ウェブコンポーネント](/ja/docs/Web/Web_Components)
+- {{cssxref(":host")}}
+- {{cssxref(":host()")}}