Answers for "flex right align last item"

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
0

display flex align last item to left

.speakers::after {
  content: '';
  flex: auto;
}
Posted by: Guest on January-12-2021

Browse Popular Code Answers by Language