HTML:如何在不影响视觉显示的情况下添加锚标记?

时间:2014-04-16 15:44:21

标签: html

我想在页面中添加HTML锚标记,但其方式不会影响布局或格式。使用<a><p><div>等时,会引入一些垂直空白区域。

有没有办法包含一个锚,这样它不会影响页面的视觉显示?

假设我不想将此锚点包含在已存在的段落或其他元素中,并且我想在页面的任何位置随意引入锚点而不更改页面的显示。

更新1

这是一个简单的例子。在下面插入anchor1会引入垂直空间。有没有办法在不影响视觉布局的情况下简单插入一个不知名的锚?该锚将用作跳转到页面上特定位置的链接。

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p id="anchor1"></p>
<p>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>

1 个答案:

答案 0 :(得分:0)

如果您无法将ID添加到现有元素,请使用实际的anchor

  

HTML <a>元素(或HTML锚元素)定义超链接,超链接的命名目标目标,或两者。

HTML4:

<a name="anchor1"></a>

HTML5:

<a id="anchor1"></a>