如何固定导航条?
导读:固定导航条 可以设置页面的导航条固定在头部或者底部: 固定在头部 ul { position: fixed; top: 0; width: 100%; } 固定在底部 ul { positio...
固定导航条
可以设置页面的导航条固定在头部或者底部:
固定在头部
ul {
position: fixed;
top: 0;
width: 100%;
}
固定在底部
ul {
position: fixed;
bottom: 0;
width: 100%;
}
注意:该实例可以在移动设备上使用。
灰色水平导航条
灰色水平导航条
ul {
border: 1px solid #e7e7e7;
background-color: #f3f3f3;
}
li a {
color: #666;
}
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: 如何固定导航条?
本文地址: https://pptw.com/jishu/664030.html