:first-of-type ・・・ 最初の要素に適用
:last-of-type ・・・ 最後の要素に適用
:nth-of-type(odd) ・・・ 奇数番目の要素に適用
:nth-of-type(2n+1) ・・・ 奇数番目の要素に適用
:nth-of-type(even) ・・・ 偶数番目の要素に適用
:nth-of-type(2n) ・・・ 偶数番目の要素に適用
:nth-of-type(3n) ・・・ 3,6,9,12…番目の要素に適用
:nth-of-type(3n+1) ・・・ 1,4,7,10…番目の要素に適用
:nth-of-type(-n+3) ・・・ 最初の3つの要素に適用
:nth-of-type(n+3) ・・・ 最初の2つの要素以外に適用
:not(除外したい要素) ・・・ かっこの内容以外に適用