JSFiddle - React, Tailwind, and code Playground

by nilloc

HTML

<div class="tom">Hello</div>

CSS

.tom{
  color:red;
  user-select:none;
  transition-property:color, font-size;
  transition-duration:1s;
  font-size:30px;
  font-weight:bold;
}
.tom:hover{
  color:green;
  cursor:default;
  font-size:60px;
}