diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-03 20:48:59 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-13 09:56:21 +0900 |
commit | c24d73543103c268e7f5e0002846300553717246 (patch) | |
tree | 50d50ceef3879823de1e31a32f75ef37bce2d316 /files/ja/web/css/_colon_target | |
parent | 507374af09059e0e8a579810f332844011af4203 (diff) | |
download | translated-content-c24d73543103c268e7f5e0002846300553717246.tar.gz translated-content-c24d73543103c268e7f5e0002846300553717246.tar.bz2 translated-content-c24d73543103c268e7f5e0002846300553717246.zip |
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/_colon_target')
-rw-r--r-- | files/ja/web/css/_colon_target/index.md | 196 |
1 files changed, 90 insertions, 106 deletions
diff --git a/files/ja/web/css/_colon_target/index.md b/files/ja/web/css/_colon_target/index.md index 3cfa238a57..5d6bd6286a 100644 --- a/files/ja/web/css/_colon_target/index.md +++ b/files/ja/web/css/_colon_target/index.md @@ -1,63 +1,69 @@ --- title: ':target' -slug: 'Web/CSS/:target' +slug: Web/CSS/:target tags: - CSS - - Layout - - Pseudo-class - - Reference - - Web + - レイアウト + - 擬似クラス + - リファレンス - セレクター - - 疑似クラス -translation_of: 'Web/CSS/:target' + - ウェブ +browser-compat: css.selectors.target +translation_of: Web/CSS/:target --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><strong><code>:target</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>は、 URL のフラグメントに一致する {{htmlattrxref("id")}} を持つ固有の要素 (<em>対象要素</em>) を表します。</p> +**`:target`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)は、 URL のフラグメントに一致する {{htmlattrxref("id")}} を持つ固有の要素 (*対象要素*) を表します。 -<pre class="brush: css no-line-numbers notranslate">/* 現在の URL のフラグメントに一致する ID を持つ要素を選択 */ +```css +/* 現在の URL のフラグメントに一致する ID を持つ要素を選択 */ :target { border: 2px solid black; -}</pre> +} +``` -<p>例えば、以下の URL には <code>section2</code> と呼ばれる要素を指すフラグメント (<em>#</em> 記号で記述) があります。</p> +例えば、以下の URL には `section2` と呼ばれる要素を指すフラグメント (_#_ 記号で記述) があります。 -<pre class="notranslate">http://www.example.com/index.html#section2</pre> + http://www.example.com/index.html#section2 -<p>現在の URL が上記の通りの場合、以下の要素が <code>:target</code> セレクターで選択されます。</p> +現在の URL が上記の通りの場合、以下の要素が `:target` セレクターで選択されます。 -<pre class="brush: html notranslate"><section id="section2">Example</section></pre> +```html +<section id="section2">Example</section> +``` -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> +## 例 -<h3 id="A_table_of_contents" name="A_table_of_contents">目次</h3> +### 目次 -<p><code>:target</code> 擬似クラスは、目次を構成するためにリンクされたページの部分を強調表示するために使うことができます。</p> +`:target` 擬似クラスは、目次を構成するためにリンクされたページの部分を強調表示するために使うことができます。 -<h4 id="HTML">HTML</h4> +#### HTML -<pre class="brush: html notranslate"><h3>目次</h3> -<ol> - <li><a href="#p1">第1段落にジャンプ!</a></li> - <li><a href="#p2">第2段落にジャンプ!</a></li> - <li><a href="#nowhere">このリンクは対象がないので、 - どこにも行きません。</a></li> -</ol> +```html +<h3>目次</h3> +<ol> + <li><a href="#p1">第1段落にジャンプ!</a></li> + <li><a href="#p2">第2段落にジャンプ!</a></li> + <li><a href="#nowhere">このリンクは対象がないので、 + どこにも行きません。</a></li> +</ol> -<h3>My Fun Article</h3> -<p id="p1">You can target <i>this paragraph</i> using a - URL fragment. Click on the link above to try out!</p> -<p id="p2">This is <i>another paragraph</i>, also accessible - from the links above. Isn't that delightful?</p> -</pre> +<h3>My Fun Article</h3> +<p id="p1">You can target <i>this paragraph</i> using a + URL fragment. Click on the link above to try out!</p> +<p id="p2">This is <i>another paragraph</i>, also accessible + from the links above. Isn't that delightful?</p> +``` -<h4 id="CSS">CSS</h4> +#### CSS -<pre class="brush: css notranslate">p:target { +```css +p:target { background-color: gold; } @@ -72,45 +78,49 @@ p:target::before { /* 対象要素の中の i 要素にスタイルを適用 */ p:target i { color: red; -}</pre> - -<h4 id="Result" name="Result">結果</h4> +} +``` -<div>{{EmbedLiveSample('A_table_of_contents', 500, 300)}}</div> +#### 結果 -<h3 id="Pure-CSS_lightbox" name="Pure-CSS_lightbox">純粋な CSS のライトボックス</h3> +{{EmbedLiveSample('A_table_of_contents', 500, 300)}} -<p><code>:target</code> 擬似クラスを使用して JavaScript を使わずにライトボックスを作成することができます。この技術はページ内の最初は非表示の要素をリンクを作ることができることを利用しています。いったん対象となれば、 CSS で <code>display</code> を変更して表示させます。</p> +### 純粋な CSS のライトボックス -<div class="note"><strong>注:</strong> <code>:target</code> 擬似クラスを使用した純粋な CSS のライトボックスのもっと完全な版は、 <a href="https://github.com/madmurphy/takefive.css/">GitHub で利用できます</a> (<a href="https://madmurphy.github.io/takefive.css/">デモ</a>)。</div> +`:target` 擬似クラスを使用して JavaScript を使わずにライトボックスを作成することができます。この技術はページ内の最初は非表示の要素をリンクを作ることができることを利用しています。いったん対象となれば、 CSS で `display` を変更して表示させます。 -<h4 id="HTML_2">HTML</h4> +> **Note:** `:target` 擬似クラスを使用した純粋な CSS のライトボックスのもっと完全な版は、 [GitHub で利用できます](https://github.com/madmurphy/takefive.css/) ([デモ](https://madmurphy.github.io/takefive.css/))。 -<pre class="brush: html notranslate"><ul> - <li><a href="#example1">例1を開く</a></li> - <li><a href="#example2">例2を開く</a></li> -</ul> +#### HTML -<div class="lightbox" id="example1"> - <figure> - <a href="#" class="close"></a> - <figcaption>Lorem ipsum dolor sit amet, consectetur adipiscing elit. - Donec felis enim, placerat id eleifend eu, semper vel sem.</figcaption> - </figure> -</div> +```html +<ul> + <li><a href="#example1">例 1 を開く</a></li> + <li><a href="#example2">例 2 を開く</a></li> +</ul> -<div class="lightbox" id="example2"> - <figure> - <a href="#" class="close"></a> - <figcaption>Cras risus odio, pharetra nec ultricies et, +<div class="lightbox" id="example1"> + <figure> + <a href="#" class="close"></a> + <figcaption>Lorem ipsum dolor sit amet, consectetur adipiscing elit. + Donec felis enim, placerat id eleifend eu, semper vel sem.</figcaption> + </figure> +</div> + +<div class="lightbox" id="example2"> + <figure> + <a href="#" class="close"></a> + <figcaption>Cras risus odio, pharetra nec ultricies et, mollis ac augue. Nunc et diam quis sapien dignissim auctor. - Quisque quis neque arcu, nec gravida magna.</figcaption> - </figure> -</div></pre> + Quisque quis neque arcu, nec gravida magna.</figcaption> + </figure> +</div> +``` -<h4 id="CSS_2">CSS</h4> +#### CSS -<pre class="brush: css notranslate">/* 開いていないライトボックス */ +```css +/* 開いていないライトボックス */ .lightbox { display: none; } @@ -168,47 +178,21 @@ p:target i { background-color: rgba(0,0,0,.7); content: ""; cursor: default; -}</pre> - -<h4 id="Result_2" name="Result_2">結果</h4> - -<div>{{EmbedLiveSample('Pure-CSS_lightbox', 500, 220)}}</div> - -<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("HTML WHATWG", "browsers.html#selector-target", ":target")}}</td> - <td>{{Spec2("HTML WHATWG")}}</td> - <td>HTML 特有の意味論を定義。</td> - </tr> - <tr> - <td>{{SpecName("CSS4 Selectors", "#the-target-pseudo", ":target")}}</td> - <td>{{Spec2("CSS4 Selectors")}}</td> - <td>変更なし。</td> - </tr> - <tr> - <td>{{SpecName("CSS3 Selectors", "#target-pseudo", ":target")}}</td> - <td>{{Spec2("CSS3 Selectors")}}</td> - <td>初回定義。</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<div>{{Compat("css.selectors.target")}}</div> - -<h2 id="See_also" name="See_also">関連情報</h2> +} +``` -<ul> - <li><a href="/ja/docs/Web/CSS/CSS_Selectors/Using_the_%3Atarget_pseudo-class_in_selectors">セレクターでの :target 擬似クラスの利用</a></li> -</ul> +#### 結果 + +{{EmbedLiveSample('Pure-CSS_lightbox', 500, 220)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [セレクターでの :target 擬似クラスの利用](/ja/docs/Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors) |