Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在页面顶部创建一个黑色条(用作导航系统)并且我希望位置固定,所以当我在页面上向下滚动时它会保留在屏幕上。
我不确定如何让它始终在屏幕上可见&我是否需要创建一个 CSS 来创建导航条,或者插入一个黑框然后将它的 CSS 放在顶部?
CSS
#blackBar{ position:fixed; top:0; left:0; width:100%; height:60px; background-color:black; }
http://jsfiddle.net/LzDR7/
在这个黑色条带的 div 中,在 CSS 中将其“位置”属性设置为“固定”,如下所示:
position: fixed;