Answers for "css spread children horizontally"

CSS
1

css spread children horizontally

.container {
  display: flex;
  
  justify-content: space-around;
  /* OR */
  justify-content: space-between;
  /* OR */
  justify-content: space-evenly;
}
Posted by: Guest on March-01-2021

Browse Popular Code Answers by Language