HTML 中所有锚点的一般偏移量?
我有一些锚元素,但它们位于绝对位置 div 并且 div 的内容太大,以至于它在内部滚动(溢出:自动)。
div 中的所有条目顶部都有一个锚点,但是如果我转到这个锚点,我想要的元素直接位于侧面的顶部,但我希望它位于中心。我需要一些像偏移这样的东西,这样我就可以跳得比平常更高。
I have some anchor elements, but they are in absolute position div and the content of the div is so large that it scrolls inside (overflow:auto).
All entries in the div have an anchor on top, but if I go to this anchor I have the element I wanted to directly on top of the side, but I want it in the center. I need something like an offset so I can jump higher than normal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你总是可以添加另一个 div 来环绕它,然后执行类似的操作
you could always add another div to wrap around it, and then do something like
您可以尝试使用 JavaScript 滚动来纠正位置。
You could try a Javascript scroll to correct the position.