要固定导航栏不动,可以使用CSS的`position: fixed`属性。下面是一个示例代码:
HTML:
```html
- Home
- About
- Services
- Contact
```
CSS:
```css
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #f1f1f1;
}
.content {
margin-top: 40px; /* 为了避免内容被导航栏遮挡,添加上边距 */
}
```
在上面的代码中,`.navbar`类使用了`position: fixed`来固定导航栏在页面顶部。`top: 0`和`left: 0`将导航栏定位在页面的左上角。`width: 100%`使导航栏的宽度与页面宽度一致,`background-color`设置了导航栏的背景颜色。
`.content`类使用`margin-top`属性为页面内容添加上边距,避免内容被导航栏遮挡。
这样,导航栏就会固定在页面顶部,无论页面滚动与否都会保持不动。









