通过 position:fixed 实现底部导航
HTML
<div id="footer">页脚</div>
CSS
#footer {
clear: both;
height: 35px;
width: 100%;
background-color: gray;
position: fixed;
bottom:;
z-index:;
}
2023-08-26 23:22:40
通过 position:fixed 实现底部导航
HTML
<div id="footer">页脚</div>
CSS
#footer {
clear: both;
height: 35px;
width: 100%;
background-color: gray;
position: fixed;
bottom:;
z-index:;
}