有一个内容类,其中有2个类,其中一个是浮动的,另一个是右浮动,如图所示。
我想在页面的末尾或底部有一个页脚,即在2个类div结束之后。
CSS:
.footer
{
background-color:black;
width:100%;
height:25px;
margin-right:auto;
margin-left:auto;
color:white;
bottom:0px;
position:absolute;
}
但它不起作用。如果您看到图片,它就不在底部......即使bottom:0px
?有什么问题吗?
答案 0 :(得分:1)
在页脚div之前添加此内容
<div style="clear:both;"></div>
并从页脚css中删除position: absolute