put image in center css code example
Example 1: css center image
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
Example 2: how to add an image in css
.element {
background-image: url("imageFile.png");
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
.element {
background-image: url("imageFile.png");
}