JSFiddle - React, Tailwind, and code Playground
HTML
<header>
I am header
</header>
<aside class="left">
Left
</aside>
<aside class="right">
Right
</aside>
CSS
header {
background: #26A65B;
height: 50px;
color: #fff;
text-align: center;
font-size: 22px;
}
aside {
width: 50%;
height: 100px;
}
.left {
float: left;
background: #81CFE0;
}
.right {
float: right;
background: #3498DB;
}