Could someone have a look at the webpage i'm working on and tell me why the "nav" and "content" appear twice plus a scrollbar? please.
You can view the webpage HERE!
Thanks in advance
You can view the webpage HERE!
Thanks in advance
body { margin: 0; padding: 0; text-align: center; } #container { width: 600px; background: #f0f8ff; position: relative; margin: 30px auto; overflow: auto; border: 1px solid #0000ff; } #header { width: 600px; height: 150px; background: #d5e9d7; border-bottom: 1px solid #0000ff; } #nav { width: 150px; height: 300px; background: #fff5e8; border-right: 1px solid #0000ff; float: left; } #content { height: 300px; margin: 0 0 0 151px; background: #a4d4b0; } #footer { width: 600px; height: 100px; background: #fac6aa; border-top: 1px solid #0000ff; clear: both; }
Comment