:last-of-type Seçicisi;
Belirtilen tipte olan elementleri bulur ve sonuncusuna uygular. Last-child ile benzerlik gösterir.
Örnek
$("li:last-of-type").css("background-color", "red");
Codepen Ön izleme
Kullanım şekilleri;
$(“:last-of-type”)
Belirtilen tipte olan elementleri bulur ve sonuncusuna uygular. Last-child ile benzerlik gösterir.
$("li:last-of-type").css("background-color", "red");
$(“:last-of-type”)
Aynı seviyedeki elementlerin sonuncusunu seçer.
Versiyon: CSS3
span:last-of-type {
color:red;
}
| 4.0 | 3.5 | 9.0 | 3.2 | 9.6 |