JSFiddle - React, Tailwind, and code Playground
by Vitaliy
HTML
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
CSS
div{
background-image:url("http://mavencube.com/lab/Game/images/sprite-image/bird-sprite.png");
width:15%;
padding-bottom:15%;
background-size: 500%;
}
div:nth-child(1){
background-position:0 0;
}
div:nth-child(2){
background-position:25% 0;
}
div:nth-child(3){
background-position:50% 0;
}
div:nth-child(4){
background-position:75% 0;
}
div:nth-child(5){
background-position:100% 0;
}