CSS 浮动和填充
这是 HTML 布局:
<div class="wrap">
<div id="container">
<div id="left">...</div>
<div id="right">...</div>
</div>
</div>
我在左侧 div 中使用了 float: left
,在右侧 div 中使用了 float: right
。然后,我对容器使用了 padding-top: 10px
。为什么不起作用?谢谢。
这是我的第一个样式:
.wrap {
float: left;
width: 1000px
}
#container{
background-color: #FFFFFF;
padding: 10px 10px 0;
width: 980px;
float: left;
}
#left {
float: left;
width: 670px;
}
#right {
float: right;
width: 300px;
}
示例。
This is the HTML layout:
<div class="wrap">
<div id="container">
<div id="left">...</div>
<div id="right">...</div>
</div>
</div>
I used the float: left
to the left div, and float: right
to the right div. Then, I used the padding-top: 10px
to the container. Why doesn't it work? thank you.
This is my first style:
.wrap {
float: left;
width: 1000px
}
#container{
background-color: #FFFFFF;
padding: 10px 10px 0;
width: 980px;
float: left;
}
#left {
float: left;
width: 670px;
}
#right {
float: right;
width: 300px;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您浮动一个元素时,它实际上将其从文档流中取出,因此向其父元素添加填充不会对其产生影响。您可以在两个内部 div 上使用
margin-top: 10px;
。When you float an element, it's effectively taking it out of the document flow, so adding padding to its parent won't have an effect on it. You could use
margin-top: 10px;
on both of your inner divs.将右浮动 div 放在左浮动 div 之前
Put right floated div just before the float left div
不要使用浮动,而是使用 flex 并将内容调整为空格
Instead of using float, use flex and justify the contents to be space-between