Center images using CSS

I need to center images. Is this possible because the HTML center tag doesn’t seem to work on images, however, works on embedded videos.

Ideas?

2 Likes

maybe try this:

img
{
display: block !important;
margin-left: auto !important;
margin-right: auto !important;
}

1 Like

As CSS snippet?

Alright, so… it does center the images, however, also centers emojis used in a normal text line. How to exclude the emojis.

1 Like

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