- 2020.08.31
- first-child, first-of-type,
CSS 「:first-child」と「:first-of-type」の使い方
first-of-typeの方がよく使います。 :first-childの使い方 例 article :first-child { color: red } articleタグの一番最初の子要素について、文字を赤色にします (article直下で一番最初のh1が赤色になります) :first-of-typeの使い方 例 article p:first-of-type { color: […]