unwanted margin with css

erosloverty

New Member
I'm working on a fairly simple webpage and I'm a little bit dusty so I could've made a really obvious mistake but please stick with me. I'm getting a very thin (maybe 5-10px) margin on all sides of my document. I'm including an abbreviated version of my code. Can anyone tell me why I'm getting it and how to get rid of it.html:\[code\]<body><div id="wrap"><div id="video"></div><div id="para"><p>Hello, I'm ...</p></div><div id="footer"><ul id="social"><li></li><li></li><li></li><li></li></ul></div></div></body>\[/code\]css:\[code\]#wrap { background: url(Andres/images/background-bg.png); margin: 0 auto; }#para p { padding: 20px; }#footer { background:url(Andres/images/footer.png); height: 80px;}#footer #social li { float: left; padding: 10px; list-style: none; }\[/code\]
 
Top