I have HTML:
<nav>
<ul>
<li>Menu Item One</li>
<li>Menu Item Two</li>
<li>Menu Item Three</li>
</ul>
</nav>
This style is like a horizontal menu. The number of links on my list is such that navigation should drop to two lines. But I do not want him to fall in the middle of the middle. This means that since my links are verbose, it usually falls in the middle of the element. Any way to do this that forces the next line to always be in place between items <li>?
source
share