Vai al contenuto

Center image horizontally using text-align: center in CSS?

Center image horizontally using text-align: center in CSS?
* https://stackoverflow.com/questions/7055393/center-image-using-text-align-center

CSS
/* Option 1: assign a class or smth to block elements containing an img */ 
p.has_img { text-align: center; } /* then the property works like was asked */

CSS
/* Option 2: use the margin hack, more pragmatic */
img { display: block; margin: auto; }