Answers for "align flex items horizontally"

CSS
0

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;
}
Posted by: Guest on March-28-2020
0

flex align children to side

flex-direction: column;
align-items: flex-start; //left
align-items: center; //center
align-items: flex-end; //right
Posted by: Guest on August-04-2020

Code answers related to "align flex items horizontally"

Browse Popular Code Answers by Language