tbody标签什么意思
tbody标签主要定义一段表格主体(正文),使用tbody标签,可以将表格分为一个单独的部分,tbody标签可将表格中的一行或几行合成一组。
html tbody标签 语法
作用:组合 HTML 表格的主体内容。
说明:tbody 元素应该与 thead 和 tfoot 元素结合起来使用。如果您使用 thead、tfoot 以及 tbody 元素,您就必须使用全部的元素。它们的出现次序是:thead、tfoot、tbody,这样浏览器就可以在收到所有数据前呈现页脚了。您必须在 table 元素内部使用这些标签。
注释:在默认情况下这些元素不会影响到表格的布局。不过,您可以使用 CSS 使这些元素改变表格的外观。 内部必须拥有 标签!、 以及 很少被使用,这是因为糟糕的浏览器支持。
html tbody标签 示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
The above is the detailed content of What does the tbody tag mean?. For more information, please follow other related articles on the PHP Chinese website!