Answers for "align items end right flex css"

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
2

flexbox align last item right

apply margin-left: auto 
to the last item
Posted by: Guest on June-08-2021

Browse Popular Code Answers by Language