x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
    ol > li:last-child {
5
        background-color: peachpuff;
6
    }
7
    li { padding: .5em; }         
8
</style>
9
10
<ol>
11
    <li>List item</li>
12
    <li>List item</li>
13
    <li>List item</li>
14
</ol>