Highest specifity
Lowest specifity
ul > li { background: red; }
ul > #listItem { background: gray; }
#list > #listItem { background: blue; }
#list > .listItem { background: black; }
.list > .listItem { background: green; }
ul > #listItem a:hover ul { background: yellow; }
<ul><li style="background: orange;"></li></ul>