cssの基本 idは、#。classは、. タグはそのまま。セレクタの基礎の基礎

タグは、そのまま <h2></h2> h2{ color: red; } idの指定は、#______ <div id="example"></div> #example { color: red; } classの指定は、._______ <div class="example"></div> .example { color: red; }