我希望我的 body div 填充页面的宽度并坐在我的侧栏旁边的右侧,我不明白如何摆脱右侧创建的空白空间。当我在边栏中使用填充时,似乎出现了问题。我的代码如下。
我的 html 是
<div class="header">
</div>
<div class="side">
<a href="#"> menu</a> </br>
<a href="#"> menu</a> </br>
<a href="#"> menu</a> </br>
<a href="#"> menu</a> </br>
<a href="#"> menu</a>
</div>
<div class="body">
</div>
我的CSS是
.header{
background-color: #111;
width:100%;
height:120px
}
.side{
float:left;
display:inline;
width:20%;
height:1000px;
background-color: #777;
padding:20px;
}
.body{
float:left;
display:inline;
height:1000px;
width:70%;
background-color: #d33;
}
</p>