center image on page css code example
Example 1: css center image
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
Example 2: center an image
.someclass {
display: block;
margin-left: auto;
margin-right: auto;
}
Example 3: css for displaying image center
text-align: center;