Displaying images centered by default

It would be great to be able to render images as centered by default on a page.
As of now, if an image is adjusted to be smaller than the line width, it is displayed as flush left, which does not look good most of the time.

You can just add a simple css snippet:

img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
3 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.