x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
    ol > li:only-child {
5
        background-color: peachpuff;
6
    }
7
    li { padding: .5em; }         
8
</style>
9
10
<ol>
11
    <li>I'm the only child</li>
12
</ol>
13
14
<ol>
15
    <li>I'm one of many</li>
16
    <li>I'm one of many</li>
17
    <li>I'm one of many</li>
18
</ol>