Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> li:nth-child(1) { background-color: peachpuff; } li:nth-child(4) { background-color: lightblue; } li:nth-child(8) { background-color: beige; } li { padding: .5em; } </style> <ol> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> </ol>
Preview