JSFiddle - React, Tailwind, and code Playground

by Lucas Silva

HTML

<div class="container">
  <div class="element">
  </div>
</div>

CSS

.container {
  height: 200px;
  width: 100%;
}

.element {
  height: 40px;
  width: 40px;
  background-color: red;
  transition: transform 0.5s linear;
}