I have an unordered list that needs to be kept in the same format because it is a dynamically mounted side menu. More or less like this:
<ul>
<li>
<a> Link 1 <span> Algum texto </span> </a>
</li>
<li>
<a> Link 2 </a>
</li>
<li>
<a> Link 3 </a>
</li>
</ul>
This <span>
that is within <li>
must remain vertically aligned even when the link text is too large and needs to occupy two lines or more. More or less like this:
So far, I have not been successful. I can verticalize <span>
in certain situations, but not in all.
Could someone help me?