标签: twitter-bootstrap
我在容器内有两个div class="span6"(在同一行)。现在我想给容器一个margin-bottom,但由于那些div class="span6"是浮动的,就好像它们不在那里,所以容器的高度是0 ..你的建议是什么?
div class="span6"
margin-bottom
答案 0 :(得分:1)
您只需将overflow: hidden;添加到容器 - this will prevent it's height from collapsing.
overflow: hidden;