HTML <colgroup> 标签 详解
HTML基础 2022-06-02 09:39:32小码哥的IT人生shichen
HTML <colgroup> 标签
实例
两个 colgroup 元素为表格中的三列规定了不同的对齐方式和样式(注意第一个 colgroup 元素横跨两列):
<table width="100%" border="1">
<colgroup span="2" align="left"></colgroup>
<colgroup align="right" style="color:#0000FF;"></colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
</table>
完整实例【亲自试一试】:
<html>
<body>
<table width="100%" border="1">
<colgroup span="2" align="left"></colgroup>
<colgroup align="right" style="color:#0000FF;"></colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
<tr>
<td>2489604</td>
<td>My first CSS</td>
<td>$47</td>
</tr>
</table>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
浏览器支持
元素 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
<colgroup> | Yes | Yes | Yes | Yes | Yes |
所有主流浏览器都支持 <colgroup> 标签。
Firefox、Chrome 以及 Safari 仅支持 colgroup 元素的 span 和 width 属性。
定义和用法
<colgroup> 标签用于对表格中的列进行组合,以便对其进行格式化。
如需对全部列应用样式,<colgroup> 标签很有用,这样就不需要对各个单元和各行重复应用样式了。
<colgroup> 标签只能在 table 元素中使用。
HTML 与 XHTML 之间的差异
NONE
提示和注释:
提示:请为 <colgroup> 标签添加 class 属性。这样就可以使用 CSS 来负责对齐方式、宽度和颜色等等。
注释:col 元素是仅包含属性的空元素。如需创建列,您就必须在 tr 元素内部规定 td 元素。
参见:<col> 标签。
可选的属性
属性 | 值 | 描述 |
---|---|---|
align |
|
定义在列组合中内容的水平对齐方式。 |
char | character | 规定根据哪个字符来对齐列组中的内容。 |
charoff | number | 规定第一个对齐字符的偏移量。 |
span | number | 规定列组应该横跨的列数。 |
valign |
|
定义在列组合中内容的垂直对齐方式。 |
width |
|
规定列组合的宽度。 |
全局属性
<colgroup> 标签支持 HTML 中的全局属性。
事件属性
<colgroup> 标签支持 HTML 中的事件属性。
相关页面
HTML DOM 参考手册:Column 对象