JSFiddle - React, Tailwind, and code Playground

by klierik

HTML

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis minima doloribus hic dicta reprehenderit soluta ex aperiam optio nostrum quidem eaque est autem laudantium ea ullam ipsa rem temporibus amet!</p>

CSS

html, body {
    min-height: 100%;
}
html {
    position: relative;
    z-index: 1;
}
html:before,
html:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    
    content: '';
    
    background: red;
}
html:after {
    left: auto;
    right: 0;
    
    background: blue;
}
body {
    position: relative;
    z-index: 2;
}