1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【備忘録】CSSの+(プラス)とは

Posted at

プログラミング勉強日記

2020年9月22日
CSSで+を見かけたが、意味がわからなかったので調べてみた。

CSSの隣接セレクタ+(プラス)

 +は隣接セレクタと呼ばれる。そのあとすぐに来る要素を表す。

HTMLファイル
<h1>こんにちは</h1>
<p>私の名前は田中太郎です</p>
CSSファイル
h1 + p {
  color: blue;
}

0922.png

参考文献

CSSで「+(プラス)」というセレクタの意味は何?

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?