making a list horizontal with flexbox code example
Example: html list items horizontally with flexbox
for example:
(html)
<ul class="navbar-items">
<li> <a href="#start">Start</a> </li>
<li> <a href="#profile">Profile</a> </li>
<li> <a href="#projects">Projects</a> </li>
<li> <a href="#info">Info</a> </li>
</ul>
(css)
ul.navbar-items /* Important part */
{
display: flex;
align-items: stretch;
justify-content: space-between;
width: 100%; /* play with this number to get spacings correct */
}
ul.navbar-items li /* Extra part, to style each item */
{
padding: 10px;
}