标签: html5 css3 css-float margin
我有一个div容器,可以清除浮动并指定一个margin-top。但保证金顶部不起作用。
我正在设置一个高度:文档流程中前一个div的100%,但是不起作用。
请参阅https://sportame.net/sandbox/matthew/sandbox/matthew/index.php
我想要"客户信息"阻止有一个边缘顶部。
我在这里做错了什么?
答案 0 :(得分:1)
只需将overflow: hidden提交给#tourInformation即可。你有未清除的花车:
overflow: hidden
#tourInformation
#tourInformation { overflow: hidden; }
并为每个部分做同样的事情。
这样做的正确方法应该是在标题中添加clearfix类并使它们像:
clearfix
.clearfix::after { content: ""; display: block; clear: both; }