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,您可以将其位置设置为固定
#navBar{ position:fixed; height:30px; ... ... ... }