Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> li { display: inline-block; width: 150px; font-size: 20px; color: #eeeeee; } li:nth-child(1) { background: #1c87c9; } li:nth-child(2) { background: #666666; } li:nth-child(3) { background: #8ebf42; } </style> </head> <body> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </body> </html>