# What is the code for centering an uploaded image?

**URL:** https://meta.discourse.org/t/what-is-the-code-for-centering-an-uploaded-image/77446
**Category:** Support
**Created:** [2018年一月8日 04:07 UTC](https://meta.discourse.org/t/what-is-the-code-for-centering-an-uploaded-image/77446 "2018-01-08T04:07:30Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![Johani](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/johani/32/176920_2.png) [@Johani](https://meta.discourse.org/u/Johani)
#### Post date: [2018年一月10日 09:42 UTC](https://meta.discourse.org/t/what-is-the-code-for-centering-an-uploaded-image/77446/7 "2018-01-10T09:42:35Z")

</div>

> [@icaria36](#):
>
> Would it make sense to have uploaded images centered by default in Discourse?

If the images are not wide enough they will stack horizontally like so:

 ![horizontal images](https://global.discourse-cdn.com/meta/original/3X/2/b/2be345300e2cee6459bbc5d25e549db4117140aa.jpg)

If you’re fine with losing this, then you can automatically center all images in posts using CSS.

```plaintext
.lightbox-wrapper {
    display: block;
    text-align: center;
}

p>img:not(.emoji){
    display: block;
    margin: 0 auto; 
}

```

The results would look like this:

 ![centered images](https://global.discourse-cdn.com/meta/original/3X/e/6/e62b2dc326f582ae03e58eb69ebfd27b0bf7a250.jpg)

---

_[View the full topic](https://meta.discourse.org/t/what-is-the-code-for-centering-an-uploaded-image/77446)._
