Answers for "flexbox align right and left"

9

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
-1

flex item right

header > div:nth-child(3) {    margin-left: auto;}
Posted by: Guest on May-19-2021

Code answers related to "flexbox align right and left"

Browse Popular Code Answers by Language