CSSのグループ化

1037 ワード

h2 {
    color: red;
}

.thisOtherClass {
    color: red;
}

.yetAnotherClass {
    color: red;
} 
  • グループ化する際に、コンマ(以下)を選択している.
  • h2, .thisOtherClass, .yetAnotherClass {
        color: red;
    }