center in div code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: center div horizontally and vertically
.parent {
position: relative;
}
.child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
Example 3: css align items vertical center
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 4: how to center a div element
.box1{
width:80%;
margin:0 auto;
}
Example 5: centering horizontally
div.center{display:block;margin:auto;width:50%;}
p.center{text-align:center;}
Example 6: align a div in center of another div
#container {
width: 640px;
height: auto;
margin: 0 auto;
padding: 10px;
position: relative;
}