center a image 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: center an image
.classNameOfImage {
display: block;
margin-left: auto;
margin-right: auto;
}
Example 4: center an image
<style type="text/css">
.centerImage
{
text-align:center;
display:block;
}
</style>