JSFiddle - React, Tailwind, and code Playground

HTML

<div>

</div>

CSS

@keyframes taille {
    from {width: 100px;}
    to {width: 200px;}
}

div {
    height: 100px;
    width: 200px;
    background-color: blue;
    animation-name: taille;
    animation-duration: 4s;
}