JSFiddle - React, Tailwind, and code Playground
by tabalinas
HTML
<link rel="stylesheet" href="http://cdn.foundation5.zurb.com/foundation.css">
<script src="http://cdn.foundation5.zurb.com/foundation.js"></script>
<div class="row">
<div class="large-2 xleft">Left</div>
<div class="large-10 columns xright">Right</div>
</div>
CSS
body, html {
height: 100%;
}
.row, .columns {
height: 100%;
}
.xleft {
background: lightgreen;
}
.xright {
background: lightblue;
}