JSFiddle - React, Tailwind, and code Playground

by htmlzengarden

HTML

<div>
    <p>
        Lorem…
    </p>
    <p>
        Lorem…
    </p>
    <p>
        Lorem…
    </p>
</div>

CSS

div
{
    position: relative;
}
div:before
{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(256, 0, 0, 0.5);
    content: '';
}