I am trying to change all the text inside an li like teh first letter to Uppercase and the others are in lower like as follows. But it is not working,Why?
ul li{
display: inline-table;
text-transform: lowercase;
}
ul li:first-letter{
text-transform: uppercase !important;
}
<ul>
<li>TEsTt1</li>
<li>TeSt2</li>
<li>TesT3</li>
<li>TEsT4</li>
</ul>