嗨iam試圖刪除這些空白(圖像中的綠色圓圈),但我不是最好的方式來做到這一點。 即使我可以做margin-left -ve值和寬度超過100%,但有什麼方法可以正確解決這個問題。如何正確對齊此html佈局?
這裏是我的html代碼
<!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>
截圖
HTML是不必要 –
@ChristophBühler:是啊,U R右。 http://stackoverflow.com/questions/19101486/does-the-html-element-have-a-default-margin-or-padding-in-any-browser-since-n – 4dgaurav