Hi iam trying to remove these white spaces (green circles in image) , but i dont the best way to do it. Even i can do margin-left -ve value and width more than 100% but is there any way to solve this issue in proper way .
Here is my html code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Hachi</title>
<link rel="stylesheet" href="css/style_rec.css" type="text/css" />
</head>
<body>
<style>
#container{
font-family: "proxima-nova", Helvetica, Arial, sans-serif;
font-weight: normal;
color:#414141;
-webkit-font-smoothing: antialiased;
height: auto;
width: 100%;
}
#header{
width: 100%;
height:100px;
background-color: red;
}
#left_panel{
width: 50%;
float: left;
/* height: 400px;
*/ background-color: green;
}
#right_panel{
width: 50%;
float: left;
/* height: 400px;
*/ background-color: blue;
}
#bottom_logos{
width: 100%;
height:100px;
background-color: yellow;
}
</style>
<div id="container">
<div id="header"></div>
<div id="left_panel">
kjjjhjfhklhhhkh
dfdsfdsfsdfdsf
</div>
<div id="right_panel">
ewrewrewrewrewr
ewrwerewrwerewr
</div>
<div id="bottom_logos"></div>
</div>
</body>
</html>
screenshot