My goal is to use CSS to target the li elements in a list that do not have a description and are not the first-child with a b element. I want to apply padding-left to these specific li elements that do not have a title.
<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>
I am looking for something similar to this:
ul li:not[first-child=b]
Note: I am unable to add individual classes to each li element. Thank you!