css not work enter image description here enter image description here
i hope the .a class first color will be red , but not work .
<style>
.a:first-child {
color: red;
}
</style>
<body>
<ul>
<li>0</li>
<li title="1" class="a">1</li>
<li title="2" class="a">2</li>
<li title="3" class="a">3</li>
<li>4</li>
</ul>
</body>