“div”在“桌子”里面
根据 W3C,表格内是否允许使用 div?
Is a div inside a table allowed or not according to W3C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
根据 W3C,表格内是否允许使用 div?
Is a div inside a table allowed or not according to W3C?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
该文档已成功检查为 XHTML 1.0 Transitional!
This document was successfully checked as XHTML 1.0 Transitional!
您不能将
div
直接放入table
中,如下所示:将
div
放入>td
或th
元素没问题,但是:You can't put a
div
directly inside atable
, like this:Putting a
div
inside atd
orth
element is fine, however:您可以将 div 标签放入 td 标签内,但不能直接放入 table 或 tr 标签内。
示例:
这有效:
这不起作用:
这也不起作用:
You can put div tags inside a td tag, but not directly inside a table or tr tag.
Examples:
This works:
This does not work:
Nor does this work:
正如其他人在这里指出的那样,虽然您可以将 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.
这是允许的,因为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