0
0

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

■.(ドット)なしで記述する方法

p{
color:white;
}
この書き方はクラスをつけていないPタグ(HTML)にCSSを反映させる記述です

■.(ドット)をつけて記述する方法

.text{
color:white;
}
HTMLでpというクラスをつけたものを指定してCSSを反映させる記述です

■,(カンマ)で区切る方法

p, h2{
color:white;
}
複数の要素を同時に指定することができる。

■スペースで区切られているとき

p text{
color:white;
}
pの中にあるtextの文字色を変えるという指示
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?