JSFiddle - React, Tailwind, and code Playground

by Suman Kumar

HTML

<div id="content">
    <p>This is some content.</p>
</div>

CSS

html {
    height: 100%;
}

body {
    height: 100%;
    background: linear-gradient(90deg, pink 50%, cyan 50%);
}

#content {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
    font-weight: bold;
    font-family: Arial, sans-serif;
}