JSFiddle - React, Tailwind, and code Playground
by HerrSerker
HTML
<div class="header">Header</div>
<div class="row">
<div class="column"><h1>Col 1</h1></div>
<div class="column"><h1>Col 2</h1>h1></div>
</div>
CSS
.header {
background: silver;
height: 50px;
margin-bottom: 50px;
}
.row {
}
.column {
float: left;
width: 50%;
}
h1 {
background: gold;
margin-top: 50px;
}
}