我正在制作一个网页,并且遇到了“跳跃”的问题。现在我有一个按钮,当点击它时,它会跳转到我的网页中的特定部分。然而,这一部分跳到了页面的底部,我希望它移动到顶部。任何帮助都是非常感谢的。
<section class="low_arrow">
<a href="#about" style="text-decoration: none; color = "black>
<i class="fa fa-angle-double-down" aria-hidden="true" id="icon_2"></i></a>
</section>
</div>
<!----------------- About Me ------------------->
<div class="container_about">
<section class="about_me" id="me">
<h3><a name=about> ABOUT ME</a></h3>
<p> THIS IS ABOUT ME</p>
</section>发布于 2016-04-26 01:09:40
你能把下面的部分替换掉吗?
<section class="about_me" id="about">
<h3><a name=about> ABOUT ME</a></h3>
<p> THIS IS ABOUT ME</p>
</section>您必须检查节id <section id="about">和<a>标记重定向与节id的<a href="#about">是否相同。
https://stackoverflow.com/questions/36846470
复制相似问题