Answers for "make div go to center of container"

CSS
2

keeping elements of container in center

.container {
margin : 0 auto;
}
Posted by: Guest on July-28-2020
-2

different ways to center a div

/* Centering an element without flexbox */
.parent-element {
  position: relative;
}

.child-element {
	position: absolute;
  	left: 50%;
  	top: 50%;
  	transform: translate(-50%, -50%);
}

/* Centering an element using flexbox */
.parent-element {
	display: flex;
  	align-items: center;
  	justify-content: center;
}
Posted by: Guest on June-30-2021

Code answers related to "make div go to center of container"

Browse Popular Code Answers by Language