JSFiddle - React, Tailwind, and code Playground

HTML

<div id="out">
        <div id="in">
                <div id="one" style="position: relative; z-index: 3; background-color:orange; top: 3.5em;">div one
                </div>
                <div id="two" style="position: relative; z-index: 2;  background-color: yellow; top:3em;">div two
                </div>
                <canvas id="three" style="position: relative; z-index: 1;  background-color:pink;">div three
                </canvas>
                <canvas id="four" class="hidden">
                </canvas>
        </div>

        <-- Some more divs with position: static (default)-->


</div>