JSFiddle - React, Tailwind, and code Playground

by kthornbloom

HTML

<div class="resize">
Resize me, baby
</div>

CSS

.resize {
  font-size: 10vw;
}

@media screen and (min-width: 900px) {
  .resize {
    font-size: 100px;
  }
}

@media screen and (max-width: 320px) {
  .resize {
    font-size: 20px;
  }
}