JSFiddle - React, Tailwind, and code Playground
by micmic
HTML
<div>salut ceci est un texte pour tester </div>
CSS
div {
width:50px;
height:22px;
background:red;
overflow:hidden;
padding-left:50px;
-webkit-transition:width 1s;
/* For Safari 3.1 to 6.0 */
transition:width 1s;
}
div:hover {
width:300px;
}