Is the property text-align: center; a good way to center an image using CSS?
text-align: center;
img { text-align: center; }
Use this to your img CSS:
img
img { margin-right: auto; margin-left: auto; }