Answers for "align one child left, one right, and one center flex element"

CSS
13

flexbox align right and left

.primary-nav {
    display:-webkit-flex;
    display:flex;
    list-style-type:none;
    padding:0;
    justify-content:flex-end;
}

.left {
    margin-right:auto;
}
Posted by: Guest on May-07-2020

Code answers related to "align one child left, one right, and one center flex element"

Browse Popular Code Answers by Language