JSFiddle - React, Tailwind, and code Playground
by eduan
HTML
<div id="content">
<p>This is some content.</p>
</div>
<div id="background"></div>
CSS
body {
background-color: cyan;
}
#background {
position: fixed;
top: 0px;
left: 0px;
width: 50%;
height: 100%;
background-color: pink;
z-index: 1;
}
#content {
position: relative;
z-index: 2;
padding: 30px;
text-align: center;
font-weight: bold;
font-family: Arial, sans-serif;
}