If you put each image in <div class="img">, then set the style for them:
div.img{
margin: 0 auto;
}
* Adjust the width to suit your needs.
Alternative, you can set the width <div class="img">to 100% and center the text;
div.img{
width: 100%;
text-align: center;
}
source
share