JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  
  <style>
    div {
      color: blue;
    }
    
    p {
      color: inherit;
    }
  </style>
</head>
<body>
  <div>
    <p>Paragraph inside div</p>
  </div>
</body>
</html>