JSFiddle - React, Tailwind, and code Playground

by intrinsica

HTML

<div>
  <canvas height="100" width="100"></canvas>
</div>

CSS

body {margin:0;}
div {
    width:100vw;
    height: 100vh;
    text-align: center;
    line-height: 100vh;
}

canvas {
    vertical-align: middle;
    background: #f00;
}