Is the property text-align: center; a good way to center an image using CSS?
text-align: center;
img { text-align: center; }
You can use text-align: center on the parent and change the img to display: inline-block → it therefore behaves like a text-element and is will be centered if the parent has a width!
text-align: center
img
display: inline-block
img { display: inline-block }