JSFiddle - React, Tailwind, and code Playground

by phoenix_suresh

HTML

<div class="insurance-image car">
</div>

<div class="insurance-image health">   
</div>

CSS

.insurance-image {
    background: url(http://54.251.106.49/dev/yogesh/img/sprite_img.png) no-repeat left top;
    display: block;
    float: left;
    height: 64px;
    width: 64px;
}
.car {
    background-position: 0 0;
}

.health {
    background-position: -65px 0;
}