JSFiddle - React, Tailwind, and code Playground

HTML

<form method="POST" action="/tra.php" id="myform">
    <input type="hidden" value="test" name="var1">
    <input type="hidden" value="test" name="var2">
</form>
<input type="submit" id="mybutton" form="myform">

CSS

#mybutton {
    background: url(http://s019.radikal.ru/i622/1210/c1/09bff08c5526.png);
    color: transparent;
    width: 269px;
    height: 65px;
    border:0;
}
#mybutton:hover {
    background-position: 0 -65px;
}
#mybutton:active {
    background-position: 0 -130px;
}