JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
CSS
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s;
transition-timing-function: steps(5, start);
}
div:hover {
width:300px;
}
<div></div>
div {
width: 100px;
height: 100px;
background: red;
transition: width 2s;
transition-timing-function: steps(5, start);
}
div:hover {
width:300px;
}