JSFiddle - React, Tailwind, and code Playground
by Ali Uygur
HTML
<div class="transitions">
<p>Transitions</p>
</div>
CSS
.transitions {
width:200px;
height:100px;
border:1px solid #000;
background-color:grey;
float: left;
display:block;
margin:30px;
-webkit-transition: width 2s;
-moz-transition: width 2s;
-ms-transition: width 1s;
-o-transition: width 2s;
transition: width 2s;
}
.transitions:hover {
width: 300px;
height: 200px;
}
p {
text-align:center;
margin:40px auto;
}