div+css 像新浪微博的上面那种导航条怎么实现?
发布网友
发布时间:2022-04-20 11:48
我来回答
共4个回答
热心网友
时间:2022-04-20 13:17
一个简单的代码
<html>
<head>
<title>...</title>
<style type="css/text">
.head_nav{width:1000px;height:20px;position:fixed;top:0px;}
</style>
<body>
<div class="head_nav">相对于窗口定位,不会随着内容移动而改变位置</div>
</body>
</html>
大概就是这个意思,这是定位的问题,透明度的就是应用的背景图片的事情了,图片是png的,希望采纳
热心网友
时间:2022-04-20 14:35
基本原理是 用 position 的 fixed固定住, 置顶top:0 层叠z-index:9999 设置大点 让这个固定的导航条实在其他层的最上面
最后是 *filter:alpha(opacity=50) 透明滤镜 这里的50是50% 透明度
热心网友
时间:2022-04-20 16:10
position:fixed做的。
看http://www.w3school.com.cn/css/pr_class_position.asp
热心网友
时间:2022-04-20 18:01
建个一行多格的表格置顶在表格里设个上面的背景图内容我就不多说了简单吧呵呵