JSFiddle - React, Tailwind, and code Playground

HTML

<div class="desk">
    <div class="figure">
        <div class="type"><div class="sprites-sachy sprite-WKing"></div></div>
        <div class="special"><div class="sprites-sachy sprite-halo"></div></div>
    </div>
</div>

CSS

.desk {
    position: absolute;
    top: 129px;
    left: 202px;
    border: 1px solid #FF0000;
    width: 200px;
    height: 300px;
    padding: 0;
    float: left;
}
.desk .figure {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #fc0;
    bottom: 0;
    left: 0;
    right: 0;
}
.desk .type,
.desk .special {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.desk .type { z-index: 2; }
.desk .special { z-index: 1; }

.sprites-sachy {
    margin: 0 auto;
    background: url(http://i.imgur.com/6pdQ8xi.png) no-repeat top left;
}
.sprite-WKing {
    background-position: 0 -1170px;
    width: 44px;
    height: 118px;
}
.sprite-halo {
    background-position: 0 -1700px;
    width: 78px;
    height: 12px;
    background-color:darkgreen;
}