JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
CSS
.wrapper {
float:left;
}
.box {
width:100px;
height:100px;
float:right;
background:url(http://placekitten.com/200/200/) no-repeat 100% 0;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-ms-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
}
.box:hover {
width:200px;
height:200px;
}