在某些网页中,页脚在IE 9浏览器中无法正确显示

时间:2015-06-12 05:59:41

标签: css3

我在页脚显示中遇到问题IE9,在某些页面中没有正确修复页脚。页脚部分与页面中间重叠。但它在其他浏览器中正常工作。

我使用下面的代码显示页脚。

 .footer { 
        position: absolute;
        bottom:0; 
        width: 100%; 
        margin: 0 auto; 
        height:80px; 
        clear:both; /*padding-top: 250px;*/ 
        padding-bottom:10px;
    }

2 个答案:

答案 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;
&#13;
&#13;