I have large image with emoji and use it like this:
Css:
.emoticon {
width: 26px;
height: 26px;
display: inline-block;
vertical-align: top;
background-image: url(path/to/image.png);
background-repeat: no-repeat;
background-size: auto;
}
emoticon.emoticon_1 { background-position: 0 -869px }
Html:
<div class='emoticon emoticon_1'></div>
Problem is that original size of emoticons is 26x26 px, it is too lage. Are there some ways to transform it in 16x16 px image via css?