导航栏遮挡修复 在将顶部导航栏设置为 position: fixed 后,页面锚点跳转会导致锚点内容被导航栏遮挡。 可通过如下方式进行修正: 1 2 3 4 /* 假设你的导航栏高度是 60px */ html { scroll-padding-top: 60px; }