这个简单的HTML,CSS布局有什么问题?

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

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

  • 将此样式添加到您的CSS文件中:

    .container:before,
    .container:after {
        display: table;
        content: " ";
    }
    
    .container:after {
        clear: both;
    }
    

    这应该解决问题!

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

    上一篇: What is the issue with this simple HTML, CSS layout?

    下一篇: The HTML and CSS 'float' property