我一直在尝试一些不同的教程,介绍如何让我的导航栏在滚动时保持在顶部,但无法使其工作:/
这是我遇到麻烦的页面: http://www.vernietig.be/vcs/index.html
先谢谢你帮我解决这个问题!
答案 0 :(得分:0)
这会将导航放在最上面:
#yourTopNav{
top : 0;
position : fixed;
}
答案 1 :(得分:0)
将此添加到您的css:
body { margin-top: 55px; }
nav { position: fixed; clip: auto; }
我不知道为什么你有clip: rect(0,0,0,0)
,但隐藏了整个菜单,你甚至可能必须内联该指令,或删除导致它的.nav-collapse
类(但我我真的不知道你的菜单应该如何运作:P)。
答案 2 :(得分:0)
试试这个:
#header {
position: fixed;
top: 0;
left: 0;
right: 0;
}