-1

Row of cards

CSS

#cards { display: flex;flex-flow: row wrap;justify-content: center;}

I have a row of cards that is horizontally aligned to center but I want to left align the last row. How can I get the spacing for all cards to be centered but left align the last row?

Community
  • 1
  • 1

1 Answers1

-1

I achieved this by using position: center; in the (CSS) .container and float: left; in the (CSS) .card style(s). Do you have your #cards wrapped by any sort of container or row?

elbrant
  • 763
  • 5
  • 16