Answers for "center allign div"

CSS
-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
3

how to center a div

margin:auto
Posted by: Guest on August-13-2020
1

how to center a div

It's normal to not know how to center a div, just copy and learn from the codes below
Posted by: Guest on August-11-2021

Browse Popular Code Answers by Language