:nth-last-of-type(an+b) 這個 CSS 偽類 匹配那些在它之后有 an+b-1 個相同類型兄弟節(jié)點的元素,其中 n 為正值或零值。它基本上和 :nth-of-type 一樣,只是它從結(jié)尾處反序計數(shù),而不是從開頭處。
給倒數(shù)第2個span元素填充背景色:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(cainiaoplus.com)</title> <style> span:nth-last-of-type(2) { background-color: lime; } </style> </head> <body> <div> <span>這是一個跨度。</span> <span>這是另一個范圍。</span> <em>強調(diào)。</em> <span>哇,這個范圍變得模糊了!</span> <strike>這被刪除了。</strike> <span>這是最后一個跨度。</span> </div> </body> </html>測試看看 ?/?
:nth-last-of-type( <nth> ) where <nth> = <an-plus-b> | even | odd
:nth-last-of-type(n)選擇器匹配同類型中的倒數(shù)第n個同級兄弟元素。
n 可以是一個數(shù)字,一個關(guān)鍵字,或者一個公式。
提示:請參考::nth-last-child()選擇器。該選擇器匹配父元素中的倒數(shù)第n個結(jié)構(gòu)子元素
表格中的數(shù)字表示支持該屬性的第一個瀏覽器版本號。
選擇器 | |||||
---|---|---|---|---|---|
:nth-last-of-type() | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
奇數(shù)和偶數(shù)是可以作為關(guān)鍵字使用用于相匹配的子元素,其索引是奇數(shù)或偶數(shù)。
在這里,我們?yōu)槠鏀?shù)和偶數(shù)的倒數(shù)p元素指定兩個不同的背景顏色:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(cainiaoplus.com)</title> <style> p:nth-last-of-type(odd) { background:#ff0000; } p:nth-last-of-type(even) { background:#0000ff; } </style> </head> <body> <div> <p>這是第一段。</p> <p>這是第二段。</p> <p>這是第三段。</p> <p>這是第四段。</p> </div> </body> </html>測試看看 ?/?
使用公式(an+ b).描述:a代表一個循環(huán)的大小,N是一個計數(shù)器(從0開始),以及b是偏移量。
在這里,我們對所有索引是3的倍數(shù)的倒數(shù)順序的p元素指定了背景顏色:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(cainiaoplus.com)</title> <style> p:nth-last-of-type(3n+0) { background:#ff0000; } </style> </head> <body> <h1>這是標題</h1> <p>第一個段落。</p> <p>第二個段落。</p> <p>第三個段落。</p> <p>第四個段落。</p> <p>第五個段落。</p> <p>第六個段落。</p> <p>第七個段落。</p> <p>第八個段落。</p> <p>第九個段落。</p> <p><b>注意:</b> Internet Explorer 8 以及更早版本的瀏覽器不支持 :nth-last-child()選擇器.</p> </body> </html>測試看看 ?/?