Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> li:nth-child(even) { background: #74d686; font-size: 20px; color: #ffffff; } </style> </head> <body> <ul> <li>Lorem Ipsum</li> <li>Some text</li> <li>Lorem Ipsum</li> </ul> </body> </html>