Skip to content

Commit

Permalink
2023/07/22 時点の英語版に同期
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 2, 2023
1 parent 6760a7b commit d6f8cc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files/ja/learn/css/howto/highlight_para_after_h1/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: 見出しの直後に来た段落を強調表示するには
slug: Learn/CSS/Howto/Highlight_para_after_h1
l10n:
sourceCommit: 8e2641ebe076ab89299c77a51ece882de4ba5efb
sourceCommit: b85bf9fcc2c0062a765d104799d7d45d9e9b13bb
---

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

{{EmbedGHLiveSample("css-examples/howto/highlight_h1_plus_para.html", '100%', 800)}}

Expand Down

0 comments on commit d6f8cc3

Please sign in to comment.