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