Is the property text-align: center; a good way to center an image using CSS?
text-align: center;
img { text-align: center; }
One more way to scale - display it:
img { width: 60%; /* Or required size of image. */ margin-left: 20% /* Or scale it to move image. */ margin-right: 20% /* It doesn't matters much if using left and width */ }