“div”在“桌子”里面

发布于 2024-09-04 09:37:57 字数 37 浏览 5 评论 0原文

根据 W3C,表格内是否允许使用 div

Is a div inside a table allowed or not according to W3C?

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

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

发布评论

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

评论(5

颜漓半夏 2024-09-11 09:37:57
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  <head>
    <title>test</title>
  </head>
  <body>
    <table>
      <tr>
        <td>
          <div>content</div>
        </td>
      </tr>
    </table>
  </body>
</html>

该文档已成功检查为 XHTML 1.0 Transitional!

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  <head>
    <title>test</title>
  </head>
  <body>
    <table>
      <tr>
        <td>
          <div>content</div>
        </td>
      </tr>
    </table>
  </body>
</html>

This document was successfully checked as XHTML 1.0 Transitional!

知你几分 2024-09-11 09:37:57

您不能将 div 直接放入 table 中,如下所示:

<!-- INVALID -->
<table>
  <div>
    Hello World
  </div>
</table>

div 放入 >tdth 元素没问题,但是:

<!-- VALID -->
<table>
  <tr>
    <td>
      <div>
        Hello World
      </div>
    </td>
  </tr>
</table>

You can't put a div directly inside a table, like this:

<!-- INVALID -->
<table>
  <div>
    Hello World
  </div>
</table>

Putting a div inside a td or th element is fine, however:

<!-- VALID -->
<table>
  <tr>
    <td>
      <div>
        Hello World
      </div>
    </td>
  </tr>
</table>
暖树树初阳… 2024-09-11 09:37:57

您可以将 div 标签放入 td 标签内,但不能直接放入 tabletr 标签内。

示例:

这有效:

<table>
  <tr>
    <td>
      <div>This will work.</div>
    </td>
  </tr>
<table>

这不起作用:

<table>
  <tr>
    <div> this does not work. </div>
  </tr>
</table>

这也不起作用:

<table>
  <div> this does not work. </div>
</table>

You can put div tags inside a td tag, but not directly inside a table or tr tag.

Examples:

This works:

<table>
  <tr>
    <td>
      <div>This will work.</div>
    </td>
  </tr>
<table>

This does not work:

<table>
  <tr>
    <div> this does not work. </div>
  </tr>
</table>

Nor does this work:

<table>
  <div> this does not work. </div>
</table>

合久必婚 2024-09-11 09:37:57

正如其他人在这里指出的那样,虽然您可以将 DIV 放入 TD 中(而不是作为 TABLE 的直接子级),但我强烈建议不要使用 DIV 作为 TD 的子级。当然,除非你喜欢头痛。

收获很少,损失却很大,因为当你将两者结合起来时,在如何处理宽度、边距、边框等方面存在许多跨浏览器差异。我无法告诉您有多少次我不得不为客户清理此类标记,因为他们无法让自己的 HTML 在这个或那个浏览器中正确显示。

话又说回来,如果您对事物的外观不挑剔,请忽略此建议。

While you can, as others have noted here, put a DIV inside a TD (not as a direct child of TABLE), I strongly advise against using a DIV as a child of a TD. Unless, of course, you're a fan of headaches.

There is little to be gained and a whole lot to be lost, as there are many cross-browser discrepancies regarding how widths, margins, borders, etc., are handled when you combine the two. I can't tell you how many times I've had to clean up that kind of markup for clients because they were having trouble getting their HTML to display correctly in this or that browser.

Then again, if you're not fussy about how things look, disregard this advice.

赤濁 2024-09-11 09:37:57

这是允许的,因为TD可以包含内联块元素。

您可以在参考中找到它: http://xhtml.com/ en/xhtml/reference/td/#td-contains

It is allowed as TD can contain inline and block lements.

Here you can find it in the reference: http://xhtml.com/en/xhtml/reference/td/#td-contains

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