JSFiddle - React, Tailwind, and code Playground

by Thomas Gladdines

HTML

<div id="content_wrapper">
<div id="content_left" class="column">
Left column
</div>
<div id ="content">
Content
</div>
<div id="content_right" class="column">
Right column
</div>
</div>

CSS

html,
body {
	height: 100%;
}
#content_wrapper {
	overflow: hidden;
	min-height: 100%;
}
#content_wrapper .column {
	padding-bottom: 9999px;
	margin-bottom: -9999px;
}
#content_left {
	float: left;
	width: 200px;
	background: red;
	color: #fff;
}
#content {
	float: left;
}
#content_right {
	float: right;
	width: 150px;
	background: blue;
	color: #fff;
}