JSFiddle - React, Tailwind, and code Playground

by digitalzebra

HTML

<div id="container">
		<div id="top"></div>
		<div id="main">blah</div>
	</div>

CSS

body {
		margin: 0;
	}
	#container {
		position: relative;
		height: 100%;
		background: pink;
	}
	#top {
		height: 100px;
		background: lightgreen;
	}
	#main {
	    background: red;
		position: absolute;
		left: 0;
		right: 0;
		bottom:	0;
		top: 100px;
	}