css place image in center code example
Example 1: css vertical center
/*Remove comment to become a better programmer. */
/* No Flexbox */
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
/* With Flexbox */
.parent {
display: flex;
flex-direction: column;
justify-content: center;
}
Example 2: image align center
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}