I have a ul with n li's, the first one should behave like a title, and the rest like options, the thing is that the first one is at the left and the rest at the right and on top of each other.
<ul>
<li>TITLE</li>
<li>option</li>
<li>option</li>
<li>option</li>
<li>option</li>
</ul>
I can't alter the html structure (wraping in divs, etc.)
I want to achieve something like this:
Title option
option
option
option
Is there a way to do this? with flexbox or plain css? thanks in advance
Edit: I can't use definition lists because the functionality is made using ul and li, if I change the HTML structure the functionality won't work, and if I change the functionality other similar structures will stop working.