JSFiddle - React, Tailwind, and code Playground

by Rik Flink

HTML

<div id="div1">Ahold header</div>

<div id="div2">
       Ahold content
    <div id="fullscreen">Quadia</div>
</div>

CSS

#div1{ 
    width: 200px;
    height: 40px;
    background-color: blue;
    position: fixed;
    top: 0;
    left: 60px;
    z-index: 10;
}
#div2 {
    top:15px;
    width: 200px;
    height: 50px;
    position: relative;
    background-color: red;
    z-index:9;
}
#fullscreen {
    width: 200px;
    height: 50px;
    position: fixed;
    top: 10px;
    left: 30px;
    background-color: green;
    z-index: 11;
}