how to center an imager code example
Example 1: center an image
.someclass {
display: block;
margin-left: auto;
margin-right: auto;
}
Example 2: center an image
.classNameOfImage {
display: block;
margin-left: auto;
margin-right: auto;
}