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

4-1 CSS基礎 補足

Last updated at Posted at 2022-09-14

スタイルを指定するときの詳細度について

詳細度とは、どの CSS プロパティが要素に最も関係があるか、すなわち適用されるかをブラウザーが決定する手段です。
https://developer.mozilla.org/ja/docs/Web/CSS/Specificity

基本的に詳細度は以下のような優先度があります

  • 親要素 < 子要素
  • 属性class < 属性id

例えば、親要素の属性classにスタイルを指定して、子要素の属性classにもスタイルを指定すると、子要素の属性classのスタイルが適用されます。

スタイルシートに同じセレクタを定義してしまうと、後に定義されたセレクタが適用されます

実際にスタイルをあてて確認してみましょう

index.html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div class="parent">
      <span id="first" class="cls">おはよう! こんにちは! 1</span>
      <span>おはよう! こんにちは! 2</span>
      <span>おはよう! こんにちは! 3</span>
      <span>おはよう! こんにちは! 4</span>
    </div>
  </body>
</html>
style.css
.parent {
  color: blue;
  font-weight: 600;
}

span {
  color: purple;
}

.cls {
  color: orange;
}

#first {
  color: magenta;
}

.parent span {
  color: red;
}

.parent span {
  color: black;
}
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?