Is the property text-align: center; a good way to center an image using CSS?
text-align: center;
img { text-align: center; }
That doesn't always work... if it doesn't, try:
img { display: block; margin: 0 auto; }