Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css spread children horizontally

.container {
  display: flex;
  
  justify-content: space-around;
  /* OR */
  justify-content: space-between;
  /* OR */
  justify-content: space-evenly;
}
 
PREVIOUS NEXT
Tagged: #css #spread #children #horizontally
ADD COMMENT
Topic
Name
5+6 =