当页面的 header 使用 fixed 定位时,锚点跳转会被 header 遮挡。解决方法是修改页面的 scroll-padding-top 属性值为 header 的高度。

html {
  scroll-padding-top: 100px;
}