I want to remove the spaces that are. I am a layman. please forgive me if I make a stupid mistake. thank you in advance. see the image in which there is a place and also link to the code. 
html code:
<html> <head> <title>CSS</title> <link href="styles.css" rel="stylesheet"> </head> <body> <div id="wraper"> <div id="header"> Header </div> <div id="sidebar"> Side </div> <div id="content"> Content </div> <div id="footer"> Footer </div> </div> </body> </html>
Css code:
#wraper { margin:0 auto; width:800px; height:1000px; background:#FCFCFC; } #header{ background:#CFCFC0; height:100px; width:800px; } #content { float:right; width:600px; height:700px; background:#C0C0C4; } #sidebar { float:left; width:200px; height:700px; background:#CFFCCC; } #footer { clear:both; background:#C0CC0C; height:200px; width:800px; }
source share