gpt4 book ai didi

css - 移动应用程序 anchor 链接跳转到固定标题下

转载 作者:行者123 更新时间:2023-11-28 03:15:00 25 4
gpt4 key购买 nike

我创建了 anchor 链接,以便使用固定标题/固定横幅轻松导航我的移动页面之一;但是,每次我单击 anchor 链接时,它都会比我预期的跳得更远, anchor 的开始部分会滑到标题下方(看不见)。当我点击它们时,我无法弄清楚如何解决跳转到固定标题下方的 anchor 链接。

我在 PixelFlips.com article 中找到了解决方案很好地解决了这个问题。

最佳答案

我在 PixelFlips.com article 中找到了解决方案这解决了我的问题。

解决方案概述:

HTML 代码:

<ul>
<li><a href="#section1">Anchor Text</a></li>
<li><a href="#section2">Anchor Text</a></li>
<li><a href="#section3">Anchor Text</a></li>
</ul>

<!-- EMPTY SPAN SECTIONS ABOVE EACH ANCHOR BOOKMARK -->
<span class="anchor" id="section1"></span>
<div class="section"></div>

<span class="anchor" id="section2"></span>
<div class="section"></div>

<span class="anchor" id="section3"></span>
<div class="section"></div>

CSS 代码:

.anchor{
display: block;
height: 115px; /*same height as header*/
margin-top: -115px; /*same height as header*/
visibility: hidden;
}

关于css - 移动应用程序 anchor 链接跳转到固定标题下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45518460/

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