Online Html Editor

<!DOCTYPE html> <html lang="en"> <head> <style> /* Select every other div starting from the end */ div:nth-last-of-type(2n) { background-color: lightgray; } </style> </head> <body> <h2>Nth-Last-of-Type Formula Example</h2> <p>Even th divs from last are styled</p> <section> <div>Div </div> <div>Div </div> <p>Paragraph </p> <div>Div </div> <div>Div </div> <div>Div </div> <div>Div </div> </section> </body> </html>