Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>Example</title> <style> ol > li:only-child { background-color: peachpuff; } li { padding: .5em; } </style> <ol> <li>I'm the only child</li> </ol> <ol> <li>I'm one of many</li> <li>I'm one of many</li> <li>I'm one of many</li> </ol>