在 XHTML 中使用表内表是一种好的做法吗?

发布于 2024-08-21 04:54:13 字数 537 浏览 5 评论 0原文

我想知道在 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 技术交流群。

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

发布评论

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

评论(1

烟织青萝梦 2024-08-28 04:54:13

从语义上讲,如果表格数据显示在另一组表格数据的单元格中有意义,那么它正是您所需要的。否则几乎总是有更好的解决方案。

这确实不是 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.

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