With CSS I want to select the li without description, without first-child = b , to apply a padding-letf on the li without title HTML
<ul>
<li><b>title</b>description</li>
<li><b>title</b>description</li>
<li>description without title</li>
<li><b>title</b>description</li>
</ul>
something like
ul li:not[first-child=b]
PS: I cannot add a class to the different li
thank you