将导航栏固定到视口顶部后,可以滚动,但不能滚动到标题上方。我不会向下滚动整个身体。
在CSS中使用以下代码时,我无法滚动。当我拿走它时,我可以再次向下滚动浏览视口/网页。
#nav-bar {position: fixed;
width: 100%;
top: 0;
margin: 0px auto;
height: 675px;}
或
nav {display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
background-color: lightgreen;
font-family: sans-serif;
color: red;
position: fixed;
width: 100%;
top: 0;
margin: 0px auto;
height: 675px;
}
将导航栏固定在视口顶部时,我想遍历整个网页,而不会卡在页眉部分。