在 CSS 中,要想判斷最后的元素,我們可以使用如下的方式:
/* 選擇最后一個 p 標簽 */ p:last-of-type { color: red; } /* 選擇最后一個帶有 class 名稱為 test 的元素 */ .test:last-of-type { color: blue; }
上述代碼中,我們先是通過 p:last-of-type 選擇器來選中最后一個 p 標簽,并將其顏色設置為紅色。同樣地,如果要選擇最后一個帶有 class 名稱為 test 的元素,可以使用 .test:last-of-type 選擇器,將其顏色設置為藍色。
上一篇css刪除線顏色樣式
下一篇css判斷ie9