CSS選取第幾個標籤元素

2021-10-02 00:00:13 字數 803 閱讀 8792

1、first-child

表示選擇列表中的第乙個標籤。

p:first-child

2、last-child

表示選擇列表中的最後乙個標籤。

p:last-child

3、nth-child(3)

表示選擇列表中的第3個標籤。

p:nth-child(3)

4、nth-child(2n-1)

表示選擇列表中的奇數標籤,即選擇 第1、第3、第5、第7……標籤。

p:nth-child(2n-1)

5、nth-child(2n)

表示選擇列表中的偶數標籤,即選擇 第2、第4、第6…… 標籤。

p:nth-child(2n)

6、nth-child(n+3)

表示選擇列表中的標籤從第3個開始到最後。

p:nth-child(n+3)

7、nth-child(-n+3)

表示選擇列表中的標籤從0到3,即小於3的標籤。

p:nth-child(-n+3)

8、nth-last-child(3)

表示選擇列表中的倒數第3個標籤。

p:nth-last-child(3)

list 取第幾個元素

usr bin python word a b c d e f g 取第二個元素 a word 2 print a is a 取第2 3個元素 b word 1 3 print b is print b 取前2個元素 c word 2 print c is print c 取所有元素 d word ...

輸出第幾個到第幾個素數

if flag 0 counter 發現乙個素數 if flag 0 counter m counter n if counter n break return 0 這題耗費了我將近兩天的時間,各種小細節層出不窮。可能也是因為很久沒有上手的原因,除了很多問題。首先最大的乙個錯誤,就是flag 1 這...

css js 獲取第幾個節點元素

1.1 css3 nth child 選擇器 例項 規定屬於父元素的第二個p的背景色改變 p nth child 2 例項 1.2 css3 nth of type 2 選擇器 p nth of type 2 例項 奇偶數 odd 奇數1.3 css3奇數偶數 even 偶數2.1 父節點 pare...