JSFiddle - React, Tailwind, and code Playground

by Pritam Bohra

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Document</title>
</head>
<body>
  <div class="div1">
      <p>This is a paragraph.</p>
  </div>
  
  <div class="div2">
      <p>This is a paragraph.</p>
  </div>
</body>
</html>

CSS

html {
  font-size: 30px;
}
.div1 {
  font-size: 20px;
}

.div2 {
   font-size: 20px;
}

.div1 p {
  font-size: 0.5em;
}

.div2 p {
  font-size: 1rem;
}