Answers for "how to align divs in a row"

CSS
0

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 */
}
Posted by: Guest on December-27-2021

Browse Popular Code Answers by Language