1. 程式人生 > >CSS選取第幾個標籤元素:nth-child(n)、first-child、last-child

CSS選取第幾個標籤元素:nth-child(n)、first-child、last-child

CSS選取第幾個標籤元素:nth-child(n)、first-child、last-child

nth-child(n)、first-child、last-child用法

注:nth-child(n)選擇器匹配父元素中的第n個子元素。 
n可以是一個數字,一個關鍵字,或者一個公式。


nth-child(n)用法: 
1、nth-child(3) 
表示選擇列表中的第3個標籤,程式碼如下:

li:nth-child(3){background:#fff}
  • 1

2、nth-child(2n) 
表示選擇列表中的偶數標籤,即選擇 第2、第4、第6…… 標籤,程式碼如下:

li:nth-child(2n){background:#fff}
  • 1

3、nth-child(2n-1) 
表示選擇列表中的奇數標籤,即選擇 第1、第3、第5、第7……標籤,程式碼如下:

li:nth-child(2n-1){background:#fff}
  • 1

4、nth-child(n+3) 
表示選擇列表中的標籤從第3個開始到最後,程式碼如下:

li:nth-child(n+3){background:#fff}
  • 1

5、nth-child(-n+3) 
表示選擇列表中的標籤從0到3,即小於3的標籤,程式碼如下:

li:nth-child(-n+3){background:#fff}
  • 1

6、nth-last-child(3) 
表示選擇列表中的倒數第3個標籤,程式碼如下:

li:nth-last-child(3){background:#fff}
  • 1

first-child用法: 
1、first-child 
first-child表示選擇列表中的第一個標籤。程式碼如下:

li:first-child{background:#fff}
  • 1

last-child用法: 
1、last-child 
last-child表示選擇列表中的最後一個標籤,程式碼如下:

li:last-child{background:#fff}