JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<section>
  <div></div>
</section>

CSS

section {
  width: 100%;
  height: 1000vh;
}
div {
  margin: 30px;
  height: 100px;
  width: 100px;
  background: blue;
}

div:hover {
  background: red;
}