顶部固定CSS

来源:互联网 发布:python 图片相似度 编辑:程序博客网 时间:2024/06/06 08:27
<!DOCTYPE html ><html>    <head>        <title>顶部固定</title>        <style>            * {                margin: 0;                padding: 0;            }            .topbar-wrap {                background-color: #005BAC;                width: 100%;                position: fixed;                _position: static;                top: 0;                z-index: 99999;                height: 36px;                line-height: 36px;                _height: 36px;            }        </style>    </head>    <body>        <div class="topbar-wrap">        </div>        <div class="topbar-blank"></div>        <div style="height: 1000px;"></div>    </body></html>
0 0
原创粉丝点击