JSFiddle - React, Tailwind, and code Playground
by pamselle
HTML
<div class="thing">
Hover here
</div>
CSS
.thing {
-moz-transition: width 1s;
-webkit-transition: width 1s;
transition: width 1s;
width: 50px;
height: 200px;
border: 1px solid #000;
}
.thing:hover {
width: 200px
}