固定导航栏css样式代码
- 作者: 我叫常冰川10319618
- 来源: 51数据库
- 2022-08-15
固定导航栏:
一条导航栏,无论页面怎么滚动,导航栏的位置始终固定在顶部。
实现:
其实很简单,在css里给导航栏所在的div设置四个属性,position设置为fixed,top和left设置为0px,然后把z-index的值设置成最高,即可实现。
css代码如下:
/* FixTop. Create by Alvin Xing */
*{
margin: 0px;
padding: 0px;
}
div{
width: 800px;
height: 30px;
background-color: #c0c0c0;
float: left
}
#header{
position: fixed;
top: 0px;
left: 0px;
z-index: 100;
}
推荐阅读
