JSFiddle - React, Tailwind, and code Playground

by Christian Sonne

HTML

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
  </head>
  <body>
    <h1>Hello</h1><h1>World</h1>
    <br>
    <h2>
    Hello
    </h2><h2>
    World
    </h2>
  </body>
</html>

CSS

* {
        margin: 0;
        padding: 0;
      }
      h1 {
        background: #ccc;
        display: inline-block;
      }
      
      h2{
        background: #ddd;
        display:inline-block;
        width:50%;
      }