JSFiddle - React, Tailwind, and code Playground

by Chedy Missaoui

HTML

<p class="texty">
  Hello There!
</p>

CSS

.texty {
  font-size: 1em;
  transition: font-size 3s ease;
}

.texty:hover {
  font-size: 3em;
}