JSFiddle - React, Tailwind, and code Playground

by pamselle

HTML

<div class="thing">
</div>
<div class="thing">
</div>
<div class="thing">
</div>
<div class="thing">
</div>

CSS

.thing {
  -webkit-transition-property: width;
  -webkit-transition-duration:    1s;
  width: 10px; 
  height: 200px;
  border: 1px solid #000;
  float: left;
} 
.thing:hover {   
  width: 200px 
}