JSFiddle - React, Tailwind, and code Playground

by kentaromiura

HTML

<div class=top></div>
<div class=middle></div>
<div class=bottom></div>

CSS

body{
    background-color:black;
}
.top{    
    background-color: rgb(249, 246, 231); 

    height:400px;
    width:100%;
}
.middle{    
    background-color: rgba(249, 246, 231,0.95); 

    height:10px;
    width:100%;
}
.bottom{    
    background-color: rgb(130, 105, 95);
    height:200px;
    width:100%;
}