JSFiddle - React, Tailwind, and code Playground

by Kawaljit Singh

HTML

<div class="box">

</div>

CSS

.box {
  width: 100px;
  height: 100px;
  border: 1px solid red;
  transition: width 0.2s ease-out;

}

.box:hover {
  width: 200px
}