JSFiddle - React, Tailwind, and code Playground

by Oliver_kh

HTML

<div class="ff"></div>

CSS

div {
    width:100px;
    height:100px;
    background:url('http://upatov.com/content/img/grid.png');
    
-moz-transition: all 0.5s 0s ease-in;
-o-transition: all 0.5s 0s ease-in;
-webkit-transition: all 0.5s 0s ease-in;
-ms-transition: all 0.5s 0s ease-in;
}
div:hover {
        background:url('http://upatov.com/content/img/html5.png');
}