【发布时间】:2018-07-28 23:15:45
【问题描述】:
这是我为两个相关项目准备的 CSS...
html, body {
background-image: url("../images/background.png");
background-attachment: fixed;
height: 100%;
}
--和--
#navBar {
font-family: Cinzel;
position: sticky;
top: 0;
z-index: 1;
}
我的导航栏显示在它应该显示的位置,但在上下移动网页时只是滚动。如果我删除 html {height: 100%;},则粘性导航栏会起作用。我的目标是滚动然后粘贴效果。
非常感谢任何建议!
【问题讨论】:
标签: html css height navbar sticky