JSFiddle - React, Tailwind, and code Playground

by core972

HTML

<div class="titre">Titre en rem</div>
<div class="paragraphe">Paragraphe en px</div>

CSS

:root {
  font-size: 20px;
}
.titre {
  font-size: 2rem; /* 20 *2 = 40px */
}
.paragraphe {
  font-size: 40px;
}