JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<link href="style/style.css" rel="stylesheet" type="text/css" />
</head>
<div id="wrapper">
<div id="top">
top
</div>
<div id="content">
content
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p><p>foo</p><p>foo</p><p>foo</p><p>foo</p><p>foo</p><p>foo</p><p>foo</p><p>foo</p><p>foo</p><p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p>
<p>foo</p><p>foo</p><p>foo</p><p>foo</p>
</div>
<div id="bottom">
bottom
</div>
<div>
</body>
</html>
CSS
@charset "UTF-8";
*{
padding:0;
margin:0;
color:#FFF;
}
body {
background-image: url(http://ashraafi.com/img/bgpattern.png);
background-repeat: repeat;
}
#wrapper{
min-width:900px;
width: 100%;
background-color:#CCC;
position:relative;
}
#top{
width:inherit;
height:40px;
background-color:#000;
position:relative;
}
#content{
width:inherit;
background-color:#36C;
position:relative;
margin: 0px auto;
max-height: 68%;
overflow-y: auto;
}
#bottom{
position:absolute;
bottom:0;
left:0;
background-color:#42210b;
width: inherit;
height: 35px;
}