It not usual to do so, but we are getting an unordered list from an external tool and have to deal with it. This is why I am asking here.
I need the ul to behave like an ol. It's easy to say, list-style-type="decimal". But I would need to have the START parameter as well.
If that is not possible to have in an easy way I would have to build something completly independant, aka
<li>
<span>1.</span>
<p>Text</p>
</li>
I would really like to avoid that, so my question is:
Is it possible to use an ul as an ol including the start value?
<ul start="17">
handles an start value and
on the other hand does not know about start values at all. Or am I wrong?
– JonSnow Feb 19 '20 at 12:49That's it. He should not handle with css or whatever
– JonSnow Feb 19 '20 at 13:07