JSFiddle - React, Tailwind, and code Playground

by Mehman Bashirov

HTML

<div class="first"></div>
<div class="second"></div>
<div class="third"></div>

CSS

body{
    height:100%;
    min-height:100%;
    width:100%;
    position:absolute;
}
.first{
    background-color:red;
    width:20%;
    height:100%;
    float:left;
    position:relative;
}
.second{
    background-color:yellow;
    width:60%;
    height:100%;
    float:left;
    position:relative;
}
.third{
    background-color:green;
    width:20%;
    height:100%;
    float:left;
    position:relative;
}