JSFiddle - React, Tailwind, and code Playground
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
}
<div class="box">
</div>
.box {
width: 100px;
height: 100px;
border: 1px solid red;
transition: width 0.2s ease-out;
}
.box:hover {
width: 200px
}