在 XHTML 中使用表内表是一种好的做法吗?
我想知道在 td 中使用 table(表中的另一个表)是否是一个好的做法,或者从 xHTML 的角度来说,这是否是一个严格的禁忌。
<table>
<tr>
<td>ABC</td>
<td>1438</td>
<td>graph</td>
<td>holiday</td>
<td>
<!--Sub Table -->
<table>
<tr>
<td>Subtable col1</td>
<td>Subtable col2</td>
</tr>
</table>
</td>
</tr>
<table>
I was wondering if using table inside a td (another table inside a table) a good practice or is it a strict no-no, talking in terms of xHTML.
<table>
<tr>
<td>ABC</td>
<td>1438</td>
<td>graph</td>
<td>holiday</td>
<td>
<!--Sub Table -->
<table>
<tr>
<td>Subtable col1</td>
<td>Subtable col2</td>
</tr>
</table>
</td>
</tr>
<table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从语义上讲,如果表格数据显示在另一组表格数据的单元格中有意义,那么它正是您所需要的。否则几乎总是有更好的解决方案。
这确实不是 xhtml 与 html 的问题。这是关于语义标记。
Semantically speaking if it makes sense for tabular data to be displayed within the cell of another set of tabular data, then it's exactly what you need. Otherwise there is almost always a better solution.
This really isn't an xhtml vs html issue. It's about semantic markup.