Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to align divs in a row

div {
	display: flex;
  	align-items: center; /* aligns all the items vertically centered */
  	justify-content: center; /* aligns all the items horizontally centered */
}
 
PREVIOUS NEXT
Tagged: #align #divs #row
ADD COMMENT
Topic
Name
1+7 =