Answers for "how to center a div both horizontally vertically"

CSS
9

center align div vertically and horizontally css

.parent{
	display: flex;
    justify-content: center;
  	align-items: center;
}
/* Child elements will be perfectly centered automatically */
Posted by: Guest on September-06-2021

Code answers related to "how to center a div both horizontally vertically"

Browse Popular Code Answers by Language