From d6f8cc36726563c59129b5a3c8edaf1b9646cde9 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Thu, 28 Sep 2023 23:09:45 +0900 Subject: [PATCH] =?UTF-8?q?2023/07/22=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=90=8C=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/learn/css/howto/highlight_para_after_h1/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/ja/learn/css/howto/highlight_para_after_h1/index.md b/files/ja/learn/css/howto/highlight_para_after_h1/index.md index ec00bf1ff4ad9b..fe898cc1bbd10b 100644 --- a/files/ja/learn/css/howto/highlight_para_after_h1/index.md +++ b/files/ja/learn/css/howto/highlight_para_after_h1/index.md @@ -2,7 +2,7 @@ title: 見出しの直後に来た段落を強調表示するには slug: Learn/CSS/Howto/Highlight_para_after_h1 l10n: - sourceCommit: 8e2641ebe076ab89299c77a51ece882de4ba5efb + sourceCommit: b85bf9fcc2c0062a765d104799d7d45d9e9b13bb --- {{LearnSidebar}} @@ -15,7 +15,7 @@ l10n: ## 隣接兄弟結合子 -CSS の [CSS セレクター](/ja/docs/Web/CSS/CSS_Selectors) のグループには、複数のセレクターを組み合わせて選択することから**結合子**と呼ばれるものが存在します。この例では、[隣接兄弟結合子](/ja/docs/Web/CSS/Adjacent_sibling_combinator)を使用することにします。この結合子は、ある要素が他の要素の隣にあることを基準に選択します。HTML は {{htmlelement("Heading_Elements", "h1")}} の後に {{htmlelement("p")}} が続いています。`

` は `

` の隣接する兄弟要素なので、`h1 + p` で選択することができます。 +CSS の [CSS セレクター](/ja/docs/Web/CSS/CSS_selectors) のグループには、複数のセレクターを組み合わせて選択することから**結合子**と呼ばれるものが存在します。この例では、[隣接兄弟結合子](/ja/docs/Web/CSS/Adjacent_sibling_combinator)を使用することにします。この結合子は、ある要素が他の要素の隣にあることを基準に選択します。HTML は {{htmlelement("Heading_Elements", "h1")}} の後に {{htmlelement("p")}} が続いています。`

` は `

` の隣接する兄弟要素なので、`h1 + p` で選択することができます。 {{EmbedGHLiveSample("css-examples/howto/highlight_h1_plus_para.html", '100%', 800)}}