Sử dụng bộ chọn CSS:nth-last-of-type (n) để chọn mọi phần tử
là phần tử
thứ hai của phần tử cha của nó, tính từ phần tử con cuối cùng.
Ví dụ
Bạn có thể thử chạy mã sau để triển khai bộ chọn:nth-last-of-type (n):
<!DOCTYPE html> <html> <head> <style> p:nth-last-of-type(2) { background: blue; color: white; } </style> </head> <body> <p>This is demo text 1.</p> <p>This is demo text 2.</p> <p>This is demo text 3.</p> <p>This is demo text 4.</p> <p>This is demo text 5.</p> </body> </html>