伙计们,请帮我解决这个浮动的问题,我尝试了不同的方法,但是一切都对我不起作用。
在html文件中,小图片位于全局容器中。页脚位于全局容器的正下方。但是现在页脚位于顶部。
这些是我的CSS-
图片CSS
style="margin-top: 25px; margin-right: 48px; float: right;"<br>
style="margin-top: 25px; margin-right: 48px; float: left;"
#footer_container{
width: 900px;
height: 10px;
margin-top: 10px;
padding-bottom: 10px;
position: absolute;
border: solid;
}
#global_body_container{
width: 746px;
position: absolute;
padding-bottom: 10px;
border-color: #c6c8cc;
border-style:dashed;
clear: both;
}
谢谢。
最佳答案
将浮动元素overflow: hidden
放在容器中。
#global_body_container {
overflow: hidden;
}
关于html - 需要CSS float 帮助,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6380046/