Is there a way in CSS to select an OL's LI based on the starting value, and not the nth-child.
Example:
<ol>
<li></li> // 1.
<li></li> // 2.
<li></li> // 3.
<li></li> // 4.
</ol>
<ol start="3">
<li></li> // 3.
<li></li> // 4.
</ol>
In the sample, the goal is to target the li with the value of 3 via CSS. In the top OL it would be the third one down, in the second OL it would be the first one since it starts at 3 already. I am avoiding using multiple nth child fixes, I am looking to see if it is possible with out it, by targeting the actual number of that LI.
Does anyone know if this is possible?