gpt4 book ai didi

html - anchor 无法使用隐藏的溢出 [Microsoft Edge]

转载 作者:行者123 更新时间:2023-11-28 14:17:03 24 4
gpt4 key购买 nike

Edge 可能不想滚动到不可见的内容上。如果 anchor 元素超出其父维度并溢出:隐藏,Edge 浏览器将不会滚动到该元素上。

.box {
width: 100%;
height: 100vh;
}

.first {
background-color: red;
}

.second {
background-color: blue;
position: relative;
overflow: hidden;
}

#anchor {
position: absolute;
top: -20px; /* if you change back to 0, anchor will work */
left: 0;
width: 20px;
height: 20px;
background-color: yellow;
}
<div class="box first">
<a href="#anchor">GO TO ANCHOR IN SECOND SECTION</a>
</div>

<div class="box second">
<div id="anchor"></div>
</div>

我需要一个在他父级之外的 anchor ,它有溢出:隐藏,而 href 仍然在 anchor 上滚动。

它在 Chrome 和 Firefox 上运行良好。边缘版本:44.17763.1.0

最佳答案

这很奇怪,我无法告诉您 Edge 为何这样做。但是,您的示例的快速修复方法是通过添加

呈现一行不可见像素
 border-bottom: 1px solid transparent; /* this will overlap the parent element */
background-clip: content-box; /* bg is not painted under border */

查看working here .如您所见,Edge 配合。

关于html - anchor 无法使用隐藏的溢出 [Microsoft Edge],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55777101/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com