JSFiddle - React, Tailwind, and code Playground

by Riskbreaker

HTML

<div class="cont">
     <div class="button">&nbsp;</div>
  </div>

CSS

.button{
    background:url(http://svhealthcare.org/revise/images/sprite.png) no-repeat 0 0;
    width:14px;
    height:15px;
    cursor:pointer;
}

.button:hover{
    background:url(http://svhealthcare.org/revise/images/sprite.png) no-repeat 0px -27px;
}

.button:active{
    background:url(http://svhealthcare.org/revise/images/sprite.png) no-repeat 0px -27px;
}

.cont{
    width:200px;
    height:200px;
    float:left;
    margin:50px 0 0 100px;
}