我在页脚显示中遇到问题IE9
,在某些页面中没有正确修复页脚。页脚部分与页面中间重叠。但它在其他浏览器中正常工作。
我使用下面的代码显示页脚。
.footer {
position: absolute;
bottom:0;
width: 100%;
margin: 0 auto;
height:80px;
clear:both; /*padding-top: 250px;*/
padding-bottom:10px;
}
答案 0 :(得分:0)
我用过
.bottom_bar_fixed
{
z-index: 999 !important;
position: fixed;
bottom: 0px;
width: 100%;
height: 6%;
}
这对我有用
答案 1 :(得分:0)
.footer {
bottom: 0;
right: 0;
left: 0;
height: 80px;
position: absolute;
background-color: green;
}

<div class="footer"></div>
&#13;