<col>
优质
小牛编辑
124浏览
2023-12-01
描述 (Description)
HTML
标记允许作者将表列的属性规范组合在一起。 它不会在结构上将列组合在一起 - 这是元素的作用。元素为空,仅用作对属性的支持。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML col 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 = "150"></col>
<col width = "50"></col>
</colgroup>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
<td>col 4</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 | ? |