Is the property text-align: center; a good way to center an image using CSS?
text-align: center;
img { text-align: center; }
display: block with margin: 0 didn't work for me, neither wrapping with a text-align: center element.
display: block
margin: 0
text-align: center
This is my solution:
img.center { position: absolute; transform: translateX(-50%); left: 50%; }
translateX is supported by most browsers