:last-child:最後一個子元素
:nth-child(數字):第幾個子元素
:nth-child(2n):挑出偶數的元素(2的倍數)
:nth-child(2n+1):挑出奇數的元素
:nth-last-child(數字):從後面數來第幾個子元素
:only-child:只有一個子元素
:first-of-type:同一種元素的第一個
:last-of-type:同一種元素的最後一個
:nth-of-type():同一種元素裏頭的第幾個
:nth-last-of-type():同一種元素從後面屬過來第幾個
:only-of-type:只有這種元素
http://www.oxxostudio.tw/articles/201405/css-selector.html