JSFiddle - React, Tailwind, and code Playground
by Mehmet Yener
HTML
<div class="responsiveBox">
</div>
<div class="responsiveBox">
</div>
<div class="responsiveBox">
</div>
<div class="responsiveBox">
</div>
CSS
.responsiveBox
{
width:150px;
height:150px;
background-color:red;
display:inline-block;
transition-property: all;
-moz-transition-property: all;
-webkit-transition-property: all;
-o-transition-property: all;
transition-duration: 1s;
-webkit-transition-duration: 1s;
transition-timing-function: linear;
-webkit-transition-timing-function: linear;
}