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 1 year has passed since last update.

HTMLのclassとidの使い方

Last updated at Posted at 2022-06-03

HTMLのclassとidの使い方

  • idは(親)タグにつける場所名
  • classはデザインを管理するためのデザイン名

セレクタの詳細度 (優先順位)

セレクタ 点数 内容
idセレクタ 1.0.0 #OO
クラスセレクタ
style属性
疑似要素
0.1.0 .OO
<タグ style="OO:OO;">
:hover, :visitedなど
タグセレクタ
疑似要素
0.0.1 <p><a>など
::before,::afterなど

style属性が1番優先度が高い。
CSSのどこに書くかでタグの優先度が変わる

2番目がHTMLタグの中にあるタグ
3番目がCSSファイルの中にあるもの


CSSのセレクタの優先順位と点数

  • a:link{ color:blue; } タグセレクタ+疑似クラス +11
  • nav_a{ color:green; } タグセレクタ+タグセレクタ +2
  • a{ color:red; } タグセレクタ +1

疑似クラス
div > article:first-of-type

  • 基本的には ...of-type を使用する。
  • 子要素やリストには :first-Child を使用する。

タグ名:first-of-type 最初の子要素
(子要素) :last-of-type 最後の子要素
     :nth-of-type(2) 2番目の要素

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?