HTML 中所有锚点的一般偏移量?

发布于 2024-08-05 02:01:08 字数 154 浏览 2 评论 0原文

我有一些锚元素,但它们位于绝对位置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傻比既视感 2024-08-12 02:01:08

你总是可以添加另一个 div 来环绕它,然后执行类似的操作

.wrapperdiv{
   position:relative;
   top:-10px;
}

you could always add another div to wrap around it, and then do something like

.wrapperdiv{
   position:relative;
   top:-10px;
}
甲如呢乙后呢 2024-08-12 02:01:08

您可以尝试使用 JavaScript 滚动来纠正位置。

You could try a Javascript scroll to correct the position.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文