JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent" style="top: 5px">
    <div>I am a div</div>
</div>
<div class="parent" style="top: 40px">
    <div class="withLayout">I am a div with layout</div>
</div>

CSS

div.parent {
    position: absolute;
    left: 5px;    
}
div div {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    background-color: red;
    padding: 3px;
    font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
}
.withLayout {
    width:100%;
}