好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

position:fixed如何兼容浏览器低版本

项目中遇到的坑,写篇博客做个笔记纪念下,position: fixed一般来说都兼容各个浏览器,但是要兼容浏览低版本问题,就得用-webkit-transform: translateZ(0);这段代码了。

.footer_main{
    position: fixed;
    height: 150px;
    background: url(/static/web-v2.0/images/ad/IT/IT_footer.png) no-repeat top center;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 9;
    opacity: 0.9;
    -webkit-transform: translateZ(0);
} 

以上就是position:fixed如何兼容浏览器低版本的详细内容,更多请关注Gxl网其它相关文章!

查看更多关于position:fixed如何兼容浏览器低版本的详细内容...

  阅读:42次