Child

:first-child :only-child :last-child 




li:first-child {background: green;} 
li:last-child {font-size: 24px;} 
li:only-child {font-style: italic;}

  1. Sub-item - green (it's the first item in this OL); size 24 (it's also the last item of this OL); italic (it's the only item in this OL)