XHTML:将 DIV 放置在 A 标记中

发布于 2024-09-20 00:52:30 字数 54 浏览 4 评论 0原文

将 div 标签放置在锚标签内可以吗? div 的内容会将页面重定向到锚标记的 href 吗?

Is it alright to place div tags inside anchor tags?
Will contents of the div redirect the page to the href of the anchor tag?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

↙温凉少女 2024-09-27 00:52:30

可以将 div 标签放在锚标签内吗?

是的,如果:

  1. 您正在使用 HTML5/XHTML5;并且
  2. 锚标记不在内联上下文中。即仅允许短语内容的元素的后代。

否则不行。

在 HTML5/XHTML5 中, 元素不仅仅是 HTML4/XHTML1 中的内联元素。相反,它具有透明的内容模型,这意味着其内容的验证规则与不存在时相同。

所以举例

<div>
   <div>Hello World</div>
</div>

是有效的,也是

<div>
   <a href="#">
      <div>Hello World</div>
   </a>
</div>

如此。

<p>
   <div>Hello World</div>
</p>

无效,所以

<p>
   <a href="#">
      <div>Hello World</div>
   </a>
</p>

也无效。

Is it alright to place div tags inside anchor tags?

Yes, if:

  1. You are using HTML5/XHTML5; and
  2. The anchor tag is not in an inline context. i.e. a descendant of an element that only allows phrasing content.

Otherwise no.

In HTML5/XHTML5 the <a> element in not simply an inline element as it is in HTML4/XHTML1. Instead it has a transparent content model, which means that the validation rules for its content are the same as if it wasn't there.

So for example

<div>
   <div>Hello World</div>
</div>

is valid, so

<div>
   <a href="#">
      <div>Hello World</div>
   </a>
</div>

is too.

But

<p>
   <div>Hello World</div>
</p>

is not valid, so

<p>
   <a href="#">
      <div>Hello World</div>
   </a>
</p>

isn't either.

梦里人 2024-09-27 00:52:30

不,这肯定是无效的 HTML。

-div 的内容会将页面重定向到锚标记的 href 吗?
我不太确定你的意思。
但锚点后面的不是 div 的内容,而是锚点的 href 属性。

No that is certainly invalid HTML.

-Will contents of the div redirect the page to the href of the anchor tag?
I'm not so sure on what you mean on this one.
But its not the contents of a div that an anchor follows but the anchor's href attribute.

漫漫岁月 2024-09-27 00:52:30

如果你想要实现的是块级链接,你可以简单地使用 CSS:

a.block {
    display: block;
    /* everything else */
}

<a class="block">...</a>

If what you're trying to achieve is a block-level link, you can simply use CSS:

a.block {
    display: block;
    /* everything else */
}

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