I tried this code to center my main container, it works in FF, Chrome, and Safari, but not IE8.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<!-- Inline CSS -->
<style type="text/css">
body{
background: black;
}
#container{
position: absolute;
margin: 0 auto;
width: 59.375em;
height: 52.25em;
/* background: #ffffff url('img/greyGradiant.png');
background-repeat: repeat-y;
*/
background-color: white;
border-style:solid;
border-width:1px;
border-color: red;
}
</style>
<title>Starter for</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<div id="container">
<p>TODO write content </p>
<p>TODO write content </p>
<p>TODO write content </p>
<p>TODO write content </p>
<p>TODO write content </p>
<p>TODO write content </p>
</div>
</body>
</html>
Also "min-height" does not seem to work with IE8 also.