作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我有一个固定的标题高度 50px。在我的 body 里,我有很多 anchor 。问题是,当我单击指向 anchor 的链接时, anchor 出现在我的固定标题下,我丢失了 50 像素的内容(我需要向上滚动 50 像素才能阅读标题下的内容)。
有没有办法为 50px 的 anchor 留边距?我的 body 充满了很多盒子(div),它们之间有一个边距,所以我不能放置一个 50px 的空 div 然后在它之后锚定..
html:
<div id="header"></div>
<div id="content">
<div class="box" id="n1"></div>
<div class="box" id="n2"></div>
<div class="box" id="n3"></div>
</div>
CSS:
#header{
height: 40px;
width: 100%;
margin: 0px;
padding: 0px;
position: fixed;
text-align: center;
z-index:2;
}
#content{
padding-top: 50px;
margin: 0px;
}
.box {
width: 80%;
margin-left: auto;
margin-right: auto;
vertical-align : top;
padding: 1.4%; /* Keep it in percent (%) */
margin-bottom: 30px;
min-height: 200px;
}
最佳答案
欢迎来到 future :
.box {
scroll-margin-top: 50px;
}
来源:https://css-tricks.com/almanac/properties/s/scroll-margin/
关于html - 有没有办法在 css 中保证 anchor ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9338033/
我是一名优秀的程序员,十分优秀!