JSFiddle - React, Tailwind, and code Playground

by Anderson Carlos Woss

HTML

<div></div>

CSS

div {
    width: 100px;
    height: 100px;
    background: red;
    transition: width 2s;
    transition-timing-function: steps(5, start);
}

div:hover {
    width:300px;
}