My CSS Stylesheet:
body {
margin: 0px;
padding: 0px;
background-color: #4d4d4d; }
#reflection {
background-color: #fff;
background-repeat: no-repeat;
width: 100%;
height: 257px;
}
#main {
border-top: 20px solid #494949;
margin-left: 0px;
margin-right: 0px;
margin-top: 90px;
height: 330px;
background-color: #eee;
}
Check out my index page:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<head>
<title>P.S.</title>
</head>
<body>
<div id="main">
THIS IS THE MAIN PART!</div>
<div id="reflection">And this is the reflection.</div>
</body>
I can't figure out why the "reflection" div's CSS styling isn't displaying properly on my webpage after hours of troubleshooting.