diff options
Diffstat (limited to 'files/ja/web')
-rw-r--r-- | files/ja/web/css/id_selectors/index.md | 109 |
1 files changed, 46 insertions, 63 deletions
diff --git a/files/ja/web/css/id_selectors/index.md b/files/ja/web/css/id_selectors/index.md index 6557f2663b..5f59b0816f 100644 --- a/files/ja/web/css/id_selectors/index.md +++ b/files/ja/web/css/id_selectors/index.md @@ -3,81 +3,64 @@ title: ID セレクター slug: Web/CSS/ID_selectors tags: - CSS - - Reference - - Selector - - Selectors + - リファレンス + - セレクター +browser-compat: css.selectors.id translation_of: Web/CSS/ID_selectors --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p>CSS の <strong>ID セレクター</strong> (ID selector) は、 {{htmlattrxref("id")}} 属性の値に基づいて要素と一致します。選択される要素の <code>id</code> 属性は、セレクターで指定した値と完全一致していなければなりません。</p> +CSS の **ID セレクター** (ID selector) は、 {{htmlattrxref("id")}} 属性の値に基づいて要素と一致します。選択される要素の `id` 属性は、セレクターで指定した値と完全一致していなければなりません。 -<pre class="brush: css no-line-numbers notranslate">/* id="demo" のついた要素 */ +```css +/* id="demo" のついた要素 */ #demo { border: red 2px solid; -}</pre> +} +``` -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 -<pre class="syntaxbox notranslate">#id_value { <em>スタイルプロパティ</em> }</pre> +```css +#id_value { スタイルプロパティ } +``` -<p>なお、これは次の{{Cssxref("Attribute_selectors", "属性セレクター")}}と等価です (ただし、詳細度は異なります)。</p> +なお、これは次の{{Cssxref("Attribute_selectors", "属性セレクター")}}と等価です (ただし、詳細度は異なります)。 -<pre class="syntaxbox notranslate">[id=id_value] { <em>スタイルプロパティ</em> }</pre> +```css +[id=id_value] { スタイルプロパティ } +``` -<h2 id="Examples" name="Examples">例</h2> +## 例 -<h3 id="CSS">CSS</h3> +### CSS -<pre class="brush: css notranslate">#identified { +```css +#identified { background-color: skyblue; } -</pre> - -<h3 id="HTML">HTML</h3> - -<pre class="brush: html notranslate"><div id="identified">これは特別な ID がついています!</div> -<div>これは単なる普通の div です。</div> -</pre> - -<h3 id="Result" name="Result">結果</h3> - -<p>{{EmbedLiveSample("Examples", '100%', 50)}}</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", "#id-selectors", "ID selectors")}}</td> - <td>{{Spec2("CSS4 Selectors")}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName("CSS3 Selectors", "#id-selectors", "ID selectors")}}</td> - <td>{{Spec2("CSS3 Selectors")}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName("CSS2.1", "selector.html#id-selectors", "ID selectors")}}</td> - <td>{{Spec2("CSS2.1")}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName("CSS1", "#id-as-selector", "ID selectors")}}</td> - <td>{{Spec2("CSS1")}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.selectors.id")}}</p> +``` + +### HTML + +```html +<div id="identified">これは特別な ID がついています!</div> +<div>これは単なる普通の div です。</div> +``` + +### 結果 + +{{EmbedLiveSample("Examples", '100%', 50)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [CSS セレクター](/ja/docs/Web/CSS/CSS_Selectors) +- [CSS の学習: セレクター](/ja/docs/Learn/CSS/Building_blocks/Selectors) |