JSFiddle - React, Tailwind, and code Playground
by maxx0r
HTML
<div id="wrapper">
<div class="panel one">
<h1>Hoi</h1>
</div>
<div class="panel two">
<h1>hallo</h1>
</div>
<div class="panel three">
<h1>doei</h1>
</div>
</div>
CSS
#wrapper, html, body {
height:100%;
float:left;
width:100%;
}
.panel {
height:100%;
width:100%;
float:left;
}
.one { background:red; }
.two { background:orange; }
.three { background:green; }