解决ie6下fixed失效问题

Posted liuqyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决ie6下fixed失效问题相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            *{
                margin:0;
                padding:0;
            }
            .test{
                position:fixed;
                left:50px;
                top:50px;
                width:300px;
                height: 200px;
                background: green;
            }
        </style>
    </head>
    <body style="height: 1000px;">
        <div class="test">
            
        </div>
    </body>
</html>

效果展示:在ie6下fixed失效

技术图片

解决办法:(根据前面滚动条的方案)

使用绝对定位来模拟固定定位

<head>
        <meta charset="UTF-8">
        <title>滚动条</title>
        <style type="text/css">
            *{
                margin:0;
                padding:0;
            }
            /*禁止滚动条*/
            /*html,body{
                overflow: hidden;
                height: 100%;
            }*/
            html{
                overflow: hidden;/*滚动条作用于文档*/
                height: 100%;
            }
            
            body{
                overflow: auto;/*滚动条作用于自己*/
                height: 100%;
            }
            .test{
                position:absolute;
                left:100px;
                top:100px;
                width:200px;
                height: 200px;
                background: green;
            }
            
        </style>
    </head>
    <body>
        <div class="test"></div>
        <div style="height: 1000px;" >
            
        </div>
    </body>
</html>

技术图片

 

 

以上是关于解决ie6下fixed失效问题的主要内容,如果未能解决你的问题,请参考以下文章

IE6下position:fixed不支持问题及其解决方式

ios下position:fixed失效的问题解决

移动web 在ios下fixed定位失效该怎么解决

background-attachment: fixed 在iphone设备失效的解决

解决IE6不支持position:fixed属性

IOS中弹出键盘后出现fixed失效现象的解决方案