css这样:blank{ clear:both; overflow:hidden; display:block; overflow:hidden;}div {
position: fixed;
left:20px;
top:20%;
z-index:999;
}
z-index 这个是设置div的层级的, 如果你网页里面其他任何内容的层级都低于999, 那么这个DIV将会在最顶层。 谁都无法覆盖它。 999 这个数值可以调整。
固定在顶部要使用css属性的position:fixed;
做了个demo,大概的样式就是这样,具体的就要看做的时候需求是哪种了,附上
demo的html样式和css,如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>示例</title>
<style>
{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;}
</style>
</head>
<body>
<div id="edg_box">
<div class="edg_fixed">这是一个div始终固定在顶部的</div>
<div class="edg_cont">这是一个内容区域的div,装载的是内容</div>
</div>
</body>
</html>
建议最好使用内边距…IE6对外边距非常敏感并且一点规矩也不守…外边距这IE6经常发神经在定位的时候要定准确
这该死的IE6神马时候才从盗版的XP系统中全军覆没啊……………………
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)