Answers for "flex make last item fill"

CSS
0

css last item should be flex end

Setting an automatic left margin for the Last Item will do the work.

.last-item {
  margin-left: auto;
}
Posted by: Guest on July-14-2021
0

flex send last item to the end

p:last-of-type {
  margin-left: auto;
}
Posted by: Guest on June-08-2021

Browse Popular Code Answers by Language