固定 DIV 页面悬浮

<html>
    <head>
        <style type="text/css">
            .page-header
            {   
                position:fixed;
                top:0;
                left:0;
                _position:absolute;
                _top:expression(eval(document.documentElement.scrollTop));
                z-index:999999999999;
                background-color:gray;
                color:White;
                height:40px;
                width:100%
            }
        </style>
        </head>
        <body id="" class="">
            <div class="page-header">
                这是一个不随滚动条滚动的DIV
            </div>
        </body>
</html>css

相关文章
相关标签/搜索