JSFiddle - React, Tailwind, and code Playground

by blparker

HTML

<div class="container">
    <div class="one">One</div>
    <div class="two">Two</div>
    <div class="three">Three</div>
</div>

CSS

.container {
    position: relative;
    border: 1px solid #000;
    overflow: hidden;
}
.one, .three {
    position: absolute;
}
.one {
    border: 1px solid blue;
    width: 100px;
}
.two {
    border: 1px solid green;
    margin: 0 100px 0 100px;
    background: #eee;
}
.three {
    border: 1px solid red;
    width: 100px;
    right: 0;
    top: 0;
}