Is the property text-align: center; a good way to center an image using CSS?
text-align: center;
img { text-align: center; }
That will not work as the text-align property applies to block containers, not inline elements, and img is an inline element. See the W3C specification.
text-align
img
Use this instead:
img.center { display: block; margin: 0 auto; }