JSFiddle - React, Tailwind, and code Playground

by shimmy

HTML

<div class="container">
    <div class="left">
    </div>
    <div class="middle">
    </div>
    <div class="right">
    </div>
</div>

CSS

.container {
    background: gray;    
    height: 300px;
    width: 100%;
    position: relative;
}
.container > div {    
    height: 100px;
    width: 100px;       
    position: absolute;
}
div.left {    
    background: green;
    left: 0;
    bottom: 0;    
    height: 250px;
}
div.middle {    
    background: red;
    left: 100px;
    bottom: 0;    
    top: 50%;
    margin-top: -50px; //deduct lalfsize of self

}
div.right {
    background: blue;
    right: 0;
    top: 50%;
    margin-top: -50px; //deduct lalfsize of self
}