td可以在td里面吗

发布于 2024-12-05 18:47:34 字数 384 浏览 0 评论 0原文

这可能是一个无意义的问题,我知道我们必须尽可能遵循标准。但是 可以是另一个 的直接子级吗,如下所示:

<td class="parent">
    <td class="child">
        <!-- Some info -->
    </td>
</td>

或者必须创建另一个 > 在添加 ,它可能会大量填充表格标签并变得聚集......

之前使用新的

It may be a nonsense question, and I know we have to follow standards as much as possible. But can <td> be a direct child of another <td>, like this:

<td class="parent">
    <td class="child">
        <!-- Some info -->
    </td>
</td>

Or it's obligatory to create another <table> with a new <tr> before adding the <td>, which can become heavily populated with table tags and become clustered...

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

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

发布评论

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

评论(4

阪姬 2024-12-12 18:47:34

不直接,但你可以将表放在 td 内

<td class="parent">
   <table><tr>
    <td class="child">
        <!-- Some info -->
    </td>
   </tr></table>
</td>

not directly but you could place table inside td

<td class="parent">
   <table><tr>
    <td class="child">
        <!-- Some info -->
    </td>
   </tr></table>
</td>
蹲墙角沉默 2024-12-12 18:47:34

不可以, 不能是 的子级。 只能是 的子级。

No, <td> may not be a child of a <td>. A <td> may only be a child of a <tr>.

好菇凉咱不稀罕他 2024-12-12 18:47:34

最好创建一个新的表标签。

您给出的示例不是标准的,不同浏览器的行为可能有所不同

it's better to create a new table tag.

The example you give is not standard and the behavior can be different from a browser to another one

℉服软 2024-12-12 18:47:34

不遵循标准(例如将 标记放入

中)的问题是,您无法保证所有浏览器的结果都相同,或者任何浏览器的下一次更新都不会简单地忽略错误使用的标签。

旁注:作为开发者社区,我们哭喊着希望 Internet Explorer 终于开始认真对待这些标准,所以现在我们不要开始把自己搞得一团糟!

The problem with not following standards like putting a <td> tag inside a <dt>, is that you cannot guarantee that the result is the same for all browsers, or that the next update of any browser will for example not simply ignore wrongly-used tags.

As a sidenote: we, as a developer comunity, have cried and shouted for Internet Explorer to finally start to take the standards seriously, so now let's not start making a mess ourselves!

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