# Changing emoji size

**URL:** https://meta.discourse.org/t/changing-emoji-size/25307
**Category:** Feature
**Tags:** emoji
**Created:** [2015年二月17日 07:14 UTC](https://meta.discourse.org/t/changing-emoji-size/25307 "2015-02-17T07:14:33Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Juffin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/juffin/32/106901_2.png) [@Juffin](https://meta.discourse.org/u/Juffin)
#### Post date: [2015年二月17日 07:14 UTC](https://meta.discourse.org/t/changing-emoji-size/25307/1 "2015-02-17T07:14:33Z")

</div>

I’d like to change emoji size depending on what emoji is used, for example i’ve added “ragefaces” to the smiles database and they are displayed very small. is there any way to assign specific sizes to specific emojis?

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [2015年二月17日 07:36 UTC](https://meta.discourse.org/t/changing-emoji-size/25307/2 "2015-02-17T07:36:36Z")

</div>

This isn’t really in-spec for Emoji because all Emoji are by definition the same uniform size.

---

<div class="post-metadata">

### Author: ![zogstrip](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/zogstrip/32/512781_2.png) [@zogstrip](https://meta.discourse.org/u/zogstrip)
#### Post date: [2015年二月17日 10:28 UTC](https://meta.discourse.org/t/changing-emoji-size/25307/3 "2015-02-17T10:28:30Z")

</div>

> [@Juffin](#):
>
> is there any way to assign specific sizes to specific emojis?

You might be able to do that via CSS based on the `title` attribute and the `emoji` class.

---

<div class="post-metadata">

### Author: ![PJH](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pjh/32/39071_2.png) [@PJH](https://meta.discourse.org/u/PJH)
#### Post date: [2015年二月17日 10:36 UTC](https://meta.discourse.org/t/changing-emoji-size/25307/4 "2015-02-17T10:36:56Z")

</div>

Ta for the idea - just fixed one of ours to not be so squashed…

```css
.emoji[title=":eek:"] {
    height: 30px;
    width: 18px;
}

```

(Yes - I’m aware of the spacing repercussions of that one..)

---

<div class="post-metadata">

### Author: ![chapoi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/chapoi/32/537252_2.png) [@chapoi](https://meta.discourse.org/u/chapoi)
#### Post date: [2025年十二月4日 11:33 UTC](https://meta.discourse.org/t/changing-emoji-size/25307/5 "2025-12-04T11:33:34Z")

</div>


