JSFiddle - React, Tailwind, and code Playground
by purush97k
HTML
<!doctype html>
<html>
<head>
<title>CSS Sprites</title>
<style>
input{ width:300px; height:70px; background:url(http://4.bp.blogspot.com/-oXcYD1QxxjA/UPo01s5mKxI/AAAAAAAABE4/rER6WSCLl8A/s320/CSS+sprite.png); background-position: 0px 0px;}
input:hover{ background:url(http://4.bp.blogspot.com/-oXcYD1QxxjA/UPo01s5mKxI/AAAAAAAABE4/rER6WSCLl8A/s320/CSS+sprite.png); background-position: 0px -88px; cursor:pointer;}
</style>
</head>
<body>
<input type="button" />
</body>
</html>