表格的分组显示 (الجدول المنظم) (iexplore فقط)
1) 按行分组<Thead> ... </thead> - 表的题头 (header) <tbody> ... </tbody> - 表的正文 (body) <tfoot> ... </tfoot> - 表的脚注 (تذييل)
: : <table border> <thead> <tr> <th> food </h> <th> اشرب </th> <th> sweet </h> </thead> <tbody> </tbody> </table>
2) 按列分组<colgroup align = #> #= اليسار ، اليمين ، المركز
: : <عرض الحدود الجدول = 160> <colgroup align = left> <colgroup align = center> <colgroup align = right> <thead> <tr> <th> <tr> <td> d </td> <td> e </td> <td> f </td> </tbody> </table>
3) 列的属性控制<col span = #> #= 从左数起 , 具有指定属性的列的列数 <col align = #> #= يسار ، يمين ، المركز
例 : <عرض الحدود الجدول = 160> <colgroup> <col align = center span = 2> <colgroup align> <thead> <tr> <th> <tr> <td> d </td> <td> e </td> <td> f </td> </tbody> </table>