I can't get my #header content to show up in IE 8. No problems in FF or Chrome. I'm sure this is a simple fix but any help would be great!
Here's the code:
<!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="_css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<div id="header">Content for id "starter" Goes Here</div>
<div id="mainNav">Content for id "mainNav" Goes Here</div>
<div id="mainContent">Content for id "mainContent" Goes Here</div>
<div id="footer">Content for id "footer" Goes Here</div>
</div>
</body>
</html>
And my CSS:
#header {
background: #9C0;
height: 200px;
width: 800px;
position: absolute;
}