JSFiddle - React, Tailwind, and code Playground
by Ralph Echter
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>
</head>
<body>
<div id="wrapper"></div>
</body>
</html>
CSS
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#wrapper {
position: relative;
margin: 0;
padding: 0;
min-height: 100%;
width: 960px;
margin: 0 auto;
background-color: #CCC; /* just for testing purpose */
}
* html #wrapper {height: 100%} /* for the old IE if you need it */