疑似要素

●最初
:first-child(:first-of-type)

●最後
:last-child(:last-of-type)

●X番目
:nth-child(X)(:nth-of-type(n))

●Xの倍数
:nth-child(Xn)

●最後から数えてX番目
:nth-last-child(X)(:nth-last-of-type(n))

●X番目からYまで
:nth-child(n+X)

●最後からX個
:nth-last-child(-n+X)

●子要素がいっこの時
:only-child

●奇数
:nth-child(odd)

●偶数
:nth-child(even)