mar*_*bgd 17
更加详细一些.网站上的问题在哪里?
尝试将此添加到css,因此父级将知道子元素的大小:
#parent{
overflow:hidden;
}
Run Code Online (Sandbox Code Playgroud)
你需要在漂浮后清除.
尝试添加此css:
CSS
.container:after {
content: "";
display: table;
clear: both;
}
Run Code Online (Sandbox Code Playgroud)