diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-26 23:12:35 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-03 21:48:56 +0900 |
commit | e1bb793c6c8afd6558fb3d4767faf4c8b80c59ff (patch) | |
tree | be462a5b5028d2fd2900c5454c1da01f2b38ac77 /files/ja/web/css/_colon_focus-within/index.md | |
parent | 0c68616aa46f09d03108f47b71490a4a87517005 (diff) | |
download | translated-content-e1bb793c6c8afd6558fb3d4767faf4c8b80c59ff.tar.gz translated-content-e1bb793c6c8afd6558fb3d4767faf4c8b80c59ff.tar.bz2 translated-content-e1bb793c6c8afd6558fb3d4767faf4c8b80c59ff.zip |
:focus 系のセレクターの文書を更新
- 2021/10/25 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/_colon_focus-within/index.md')
-rw-r--r-- | files/ja/web/css/_colon_focus-within/index.md | 109 |
1 files changed, 49 insertions, 60 deletions
diff --git a/files/ja/web/css/_colon_focus-within/index.md b/files/ja/web/css/_colon_focus-within/index.md index c3c4b07970..b62a217a7e 100644 --- a/files/ja/web/css/_colon_focus-within/index.md +++ b/files/ja/web/css/_colon_focus-within/index.md @@ -5,47 +5,53 @@ tags: - ':focus' - ':focus-within' - CSS - - Layout - - Pseudo-class - - Reference - - Selector - - Web + - レイアウト + - 擬似クラス + - リファレンス + - セレクター + - ウェブ +browser-compat: css.selectors.focus-within translation_of: 'Web/CSS/:focus-within' --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>:focus-within</code></strong> <a href="/ja/docs/CSS/Pseudo-classes">擬似クラス</a>は、フォーカスを持っているか、フォーカスを持った要素を<em>含む</em>要素を表します。言い換えれば、それ自身が {{CSSxRef(":focus")}} 擬似クラスに該当するか、子孫に <code>:focus</code> に該当する要素がある要素を表します。 (これは<a href="/ja/docs/Web/Web_Components/Shadow_DOM">シャドウツリー</a>における子孫も含みます。)</p> +**`:focus-within`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)で、その要素または子孫要素にフォーカスがある場合にいっちします。言い換えれば、それ自身が {{CSSxRef(":focus")}} 擬似クラスに該当するか、子孫に `:focus` に該当する要素がある要素を表します。 (これは[シャドウツリー](/ja/docs/Web/Web_Components/Using_shadow_DOM)における子孫も含みます。) -<pre class="brush: css no-line-numbers notranslate">/* 子孫要素の一つにフォーカスがある <div> を選択 */ +```css +/* 子孫要素の一つにフォーカスがある <div> を選択 */ div:focus-within { background: cyan; -}</pre> +} +``` -<p>このセレクターは、よくある例のように、 {{HTMLElement("input")}} 欄の一つにユーザーがフォーカスを置いたときに、それを含む {{HTMLElement("form")}} を強調する場合に便利です。</p> +このセレクターは、よくある例のように、 {{HTMLElement("input")}} 欄の一つにユーザーがフォーカスを置いたときに、それを含む {{HTMLElement("form")}} 全体を強調する場合に便利です。 -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 {{CSSSyntax}} -<h2 id="Examples" name="Examples">例</h2> +<h2 id="Examples">例</h2> -<p>この例では、何れかの入力欄にフォーカスが当たった時、特殊な色のスタイルにします。</p> +この例では、何れかの入力欄にフォーカスが当たった時、特殊な色のスタイルにします。 -<h3 id="HTML">HTML</h3> +### HTML -<pre class="brush: html notranslate"><p>このフォームに入力してみてください。</p> +```html +<p>このフォームに入力してみてください。</p> -<form> - <label for="given_name">名前:</label> - <input id="given_name" type="text"> - <br> - <label for="family_name">苗字:</label> - <input id="family_name" type="text"> -</form></pre> +<form> + <label for="given_name">名前:</label> + <input id="given_name" type="text"> + <br> + <label for="family_name">苗字:</label> + <input id="family_name" type="text"> +</form> +``` -<h3 id="CSS">CSS</h3> +### CSS -<pre class="brush: css highlight[7] notranslate">form { +```css +form { border: 1px solid; color: gray; padding: 4px; @@ -59,39 +65,22 @@ form:focus-within { input { margin: 4px; } -</pre> - -<h3 id="Result" name="Result">結果</h3> - -<p>{{EmbedLiveSample("Examples", 500, 150)}}</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("CSS4 Selectors", "#the-focus-within-pseudo", ":focus-within")}}</td> - <td>{{Spec2("CSS4 Selectors")}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.selectors.focus-within")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>{{CSSxRef(":focus")}}</li> - <li>{{CSSxRef(":focus-visible")}} {{Experimental_Inline}}</li> - <li><a href="https://dev.to/vtrpldn/grab-your-user-s-attention-with-the-focus-within-css-selector-4d4">Grab your user's attention with the focus-within selector</a></li> -</ul> +``` + +### 結果 + +{{EmbedLiveSample("Examples", 500, 150)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{CSSxRef(":focus")}} +- {{CSSxRef(":focus-visible")}} {{Experimental_Inline}} +- [Grab your user's attention with the focus-within selector](https://dev.to/vtrpldn/grab-your-user-s-attention-with-the-focus-within-css-selector-4d4) |