为什么阻止div没有获得高度自动?

这个问题在这里已经有了答案:

  • 你如何阻止浮动元素的父母崩溃? [复制] 16个回答

  • 您需要添加以下规则

    .ForTags { overflow: auto }
    

    为包含浮动元素的父块创建块格式上下文。


    PopularTags是浮动的,这意味着它们在计算高度时不会被视为包含元素的内容。 您将需要在浮动元素之后添加一个元素,其样式为clear: both; 这将解决它。

    最后一个PopularTags元素之后的其他HTML

    <div class="clearfix"></div>
    

    额外的CSS

    .clearfix { clear: both; }
    

    有关清除浮动和其他解决方案的更多信息可以在这里找到:http://www.quirksmode.org/css/clearing.html

    链接地址: http://www.djcxy.com/p/88431.html

    上一篇: Why block div not get height auto?

    下一篇: Set border of parent <div> depending on 2 child <div>