<colgroup>
优质
小牛编辑
125浏览
2023-12-01
描述 (Description)
HTML
标记用于指定表中一组列的属性。如果需要将不同的属性应用于colgroup中的列,则可以使用colgroup标记中的HTML col标记。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML colgroup Tag</title>
</head>
<body>
<p>This example shows a colgroup that has three columns of different widths:</p>
<table border = "1">
<colgroup span = "3">
<col width = "50"></col>
<col width = "100"></col>
<col width = "200"></col>
</colgroup>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
</tr>
</table>
</body>
</html>
全局属性 (Global Attributes)
此标记支持HTML Attribute Reference描述的所有全局属性
具体属性 (Specific Attributes)
HTML
标记还支持以下附加属性 -not supported in Html5属性 | 值 | 描述 |
---|---|---|
align | right left center justify char | 定义水平对齐, not supported in Html5 。 |
char | character | 定义用于对齐文本的字符(与align =“char”一起使用), not supported in Html5 。 |
charoff | pixel | 使用char属性指定的第一个字符指定对齐偏移(以像素或百分比值表示) not supported in Html5 。 |
span | number | 定义 |
valign | bottom middle top baseline | 定义垂直对齐, not supported in Html5 。 |
width | pixels or % | 指定当前col元素跨越的每个列的默认宽度not supported in Html5 。 |
事件属性 (Event Attributes)
此标记支持HTML Events Reference中描述的所有事件属性
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |