how to center items css code example
Example 1: center div horizontally and vertically
.parent {
position: relative;
}
.child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
Example 2: center with css
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Example 3: align items center css
.parent_div
{
display:flex;
align-items:center;
}
Example 4: css align-items center
div {
display: flex;
align-items: center;
}