Answers for "flex child align 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
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