From 548a569f7a5785e05e2e52cb658ef6705ba5e198 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Thu, 6 Jan 2022 09:34:48 +0900 Subject: 2021/08/13 時点の英語版に同期 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/descendant_combinator/index.md | 136 ++++++++++-------------- 1 file changed, 55 insertions(+), 81 deletions(-) diff --git a/files/ja/web/css/descendant_combinator/index.md b/files/ja/web/css/descendant_combinator/index.md index ccd943c451..91eae9f1c1 100644 --- a/files/ja/web/css/descendant_combinator/index.md +++ b/files/ja/web/css/descendant_combinator/index.md @@ -3,105 +3,79 @@ title: 子孫結合子 slug: Web/CSS/Descendant_combinator tags: - CSS - - Reference - - Selector - - Selectors + - リファレンス + - セレクター +browser-compat: css.selectors.descendant translation_of: Web/CSS/Descendant_combinator --- -
{{CSSRef("Selectors")}}
+{{CSSRef("Selectors")}} -

子孫結合子 (descendant combinator) — 通常は単一の空白文字 ( ) で表される — は2つの CSS セレクターを結合し、1つ目のセレクターに一致する要素が祖先 (親、親の親、親の親の親、など) となっている2つ目のセレクターに一致します。子孫結合子を利用したセレクターは子孫セレクターと呼ばれます。

+**子孫結合子** (descendant combinator) — 通常は単一の空白文字 (` `) で表される — は 2 つの CSS セレクターを結合し、 1 つ目のセレクターに一致する要素が祖先 (親、親の親、親の親の親、など) となっている 2 つ目のセレクターに一致します。子孫結合子を利用したセレクターは _子孫セレクター_ と呼ばれます。 -
/* "my-things" リストの子孫のリスト項目 */
+```css
+/* "my-things" リストの子孫のリスト項目 */
 ul.my-things li {
   margin: 2em;
-}
+} +``` -

子孫結合子は、技術的には他の結合子がない2つのセレクターの間にある1つ以上の {{Glossary("CSS")}} {{Glossary("Whitespace", "ホワイトスペース")}}文字 ― 空白文字や4種類の制御文字 (復帰、ページ送り、改行、タブ文字) のうちの1つ ― です。さらに、結合子としてのホワイトスペース文字には任意の数の CSS コメントを含めることができます。

+子孫結合子は、技術的には他の結合子がない 2 つのセレクターの間にある 1 つ以上の {{Glossary("CSS")}} の{{Glossary("Whitespace", "ホワイトスペース")}}文字 ― 空白文字や 4 種類の制御文字 (復帰、ページ送り、改行、タブ文字) のうちの 1 つ ― です。さらに、結合子としてのホワイトスペース文字には任意の数の CSS コメントを含めることができます。 -

構文

+## 構文 -
セレクター1 セレクター2 {
-  /* プロパティ宣言 */
-}
+```css +セレクター1 セレクター2 { + /* プロパティ宣言 */ +} +``` -

+## 例 -

CSS

+### CSS -
li {
+```css
+li {
   list-style-type: disc;
 }
 
 li li {
   list-style-type: circle;
 }
-
- -

HTML

- -
<ul>
-  <li>
-    <div>Item 1</div>
-    <ul>
-      <li>Subitem A</li>
-      <li>Subitem B</li>
-    </ul>
-  </li>
-  <li>
-    <div>Item 2</div>
-    <ul>
-      <li>Subitem A</li>
-      <li>Subitem B</li>
-    </ul>
-  </li>
-</ul>
-
- -

結果

- -

{{EmbedLiveSample("Examples", "100%", 160)}}

- -

仕様書

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("CSS4 Selectors", "#descendant-combinators", "descendant combinator")}}{{Spec2("CSS4 Selectors")}}
{{SpecName("CSS3 Selectors", "#descendant-combinators", "descendant combinator")}}{{Spec2("CSS3 Selectors")}}
{{SpecName("CSS2.1", "selector.html#descendant-selectors", "descendant selectors")}}{{Spec2("CSS2.1")}}
{{SpecName("CSS1", "#contextual-selectors", "contextual selectors")}}{{Spec2("CSS1")}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("css.selectors.descendant")}}

- -

関連情報

+``` + +### HTML +```html +``` + +### 結果 + +{{EmbedLiveSample("Examples", "100%", 160)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [子結合子](/ja/docs/Web/CSS/Child_combinator) -- cgit v1.2.3-54-g00ecf