JSFiddle - React, Tailwind, and code Playground

by Lalji Tadhani

HTML

<div>
    Test
</div>

CSS

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

div {
    background: red;
    color: white;
    height: 100vh;
    padding: 10px;
}