需求:锚定位元素跳转后会到达视口顶部时,不让fixed布局的导航栏遮挡
HTML
<header></header>
<a id="anchor"></a>
CSS
header{
position: fixed;
top: 0;
left: 0;
z-index: 9;
width:100%;
height: 60px;
}
#anchor {
display: block;
position: relative;
top: -60px;
visibility: hidden;
}
Category
CSS