通过 position:fixed 实现底部导航

通过 position:fixed 实现底部导航

 

HTML

<div id="footer">页脚</div>

 

CSS

#footer {
    clear: both;
    height: 35px;
    width: 100%;
    background-color: gray;
    position: fixed;
    bottom: 0;
    z-index:999;
}

 

posted @ 2019-11-21 14:41  GetcharZp  阅读(418)  评论(0编辑  收藏  举报