要素名にスタイルを適用する
<style>
p{color: blue;}
</style>
<p>Hello</p>
.
をつける<style>
p{color: blue;}
.special{color: green;}
</style>
<p class=”special”>Hello</p>
#
をつける<style>
.special{color: green;}
#unique{color: red;}
</style>
<p class=”special” id=”unique”>こんにちは</p>
*
をつける<style>
p{color: blue;}
*{color: yellow;}
</style>