colgroup
适用DTD:Strict Transitional Frameset 适用浏览器:All
释义
表格列编组(table clomun group)
语法
<colgroup 属性="属性值">~标签内容~</colgroup>
<colgroup 属性="属性值">~标签内容~</colgroup>
属性
nbsp;
示范
<table>
<colgroup align="center" span="2">…</colgroup>
…
</table>
<colgroup align="center" span="2">…</colgroup>
…
</table>
范例
下面的例子显示了XHTML文件基础结构: 运行打印
下面的例子显示了XHTML文件基础结构: 运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素colgroup</title>
</head>
<body>
<p>行编组的单元格居中对齐:</p>
<table border="1" bgcolor="skyblue" width="625">
<colgroup span="2" align="center" width="100">
</colgroup>
<tr>
<td>colgroup</td><td>spanned</td><td>not in the group</td>
</tr>
<tr>
<td>colgroup</td><td>spanned</td><td>not in the group</td>
</tr>
<tr>
<td>colgroup</td><td>spanned</td><td>not in the group</td>
</tr>
</table>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素colgroup</title>
</head>
<body>
<p>行编组的单元格居中对齐:</p>
<table border="1" bgcolor="skyblue" width="625">
<colgroup span="2" align="center" width="100">
</colgroup>
<tr>
<td>colgroup</td><td>spanned</td><td>not in the group</td>
</tr>
<tr>
<td>colgroup</td><td>spanned</td><td>not in the group</td>
</tr>
<tr>
<td>colgroup</td><td>spanned</td><td>not in the group</td>
</tr>
</table>
</body>
</html>
和行编组相似,列也可以编组,方便对列进行控制。这非常重要,因为HTML表格是“以行为主”,或者说是以行为中心的,其原因是行更容易解析。使用列编组还有一个好处,就是浏览器会逐渐地装载和显示长表格。
似乎IE以外的浏览器会忽略colgroup和col元素的align、valign、bgcolor等属性,不过可以很好地支持样式设置。