セレクタは、ルールが適用される要素を特定します。シンプルなもの(タグによるもの)から強力なコンビネータまで様々です。
css
/* Basic selectors */
p { } /* type: all <p> */
.card { } /* class: elements with class="card" (reusable) */
#header { } /* id: the one element with id="header" (unique) */
* { } /* universal: every element */
[type="text"]{ } /* attribute: inputs with type=text */
なぜ重要なのか
css
{ }
> { }
+ { }
~ { }
