put something in center css code example
Example 1: center image with position absolute
.wrapper img {
left: 50%;
transform: translate(-50%,0);
position: absolute;
z-index: 1
}
Example 2: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 3: position absolute center
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
Example 4: center div horizontally and vertically
.parent {
position: relative;
}
.child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
Example 5: how to center a div element
.box1{
width:80%;
margin:0 auto;
}