<!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>
<li>I'm one of many</li>