TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> div:nth-last-child(1) { background-color: yellow; } </style> </head> <body> <div>Div 1</div> <div>Div 2</div> <div>Last Div</div> </body> </html>