CSS :nth-last-of-type(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>