页面导航头部固定以及底部固定

1.底部导航固定写法:
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 98px;
    background-color: #fff;
    z-index:300;
    box-shadow:0px 0px 4px rgba(0, 0, 0, 0.2);it


2.头部导航固定写法:
    position: fixed;
    top: 0;
    z-index: 999;
    padding: 10px 50px 0 70px;
    background-color: #f5f5f5;
    height: 100px;
    width: 100%;
}io

相关文章
相关标签/搜索