固定在顶部要使用css属性的position:fixed;
做了个demo,大概的样式就是这样,具体的就要看做的时候需求是哪种了,附上图片
demo的html样式和css,如下:
*{margin:0px; padding:0px;}
#edg_box{width:100%; height:1500px; background:#ccc; position:relative;}
.edg_fixed{width:100%; height:35px; line-height:35px; font-size:14px; color:#fff; position:fixed; top:0px; left:0px; text-align:center; background:green;}
.edg_cont{width:100%; margin-top:35px;}
黄色区域:
position:fixed,固定定位?