HTML 锚点偏移方法 防止被头部遮挡
由于顶部菜单存在 position:fixed ,而引起的的锚点位置偏移。 在css中,给锚点添加偏移量,直接就可以了 1html { 2 scroll-padding-top: 200px; 3 scroll-behavior: smooth; 4} 就是这么简单的办法, …
锚点
由于顶部菜单存在 position:fixed ,而引起的的锚点位置偏移。 在css中,给锚点添加偏移量,直接就可以了 1html { 2 scroll-padding-top: 200px; 3 scroll-behavior: smooth; 4} 就是这么简单的办法, …