JSFiddle - React, Tailwind, and code Playground
by Daniel Lisik
HTML
<canvas id="canvas"></canvas>
<div id="other_content">tjena</div>
CSS
#canvas {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
}
#other_content {
position:relative;
z-index:2;
margin:50px auto;
width:600px;
background:#ddd;
/* other styling */
}