JSFiddle - React, Tailwind, and code Playground

by colintoh

HTML

<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.0/normalize.min.css">
<div class="stage">
    <div class="box"></div>
</div>

CSS

html, body {
    height: 100%;
}

.stage {
    background: black;
    height: 100%;
    width: 100%;
}

.box {
    width: 100px;
    height: 100px;
    background: red;
}