当前位置: 首页 > 文档资料 > HTML 入门教程 >

<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应跨越的列数, 。
属性描述
alignright left center justify char定义水平对齐, not supported in Html5
charcharacter定义用于对齐文本的字符(与align =“char”一起使用), not supported in Html5
charoffpixel使用char属性指定的第一个字符指定对齐偏移(以像素或百分比值表示) not supported in Html5
spannumber定义
valignbottom middle top baseline定义垂直对齐, not supported in Html5
widthpixels or %指定当前col元素跨越的每个列的默认宽度not supported in Html5

事件属性 (Event Attributes)

此标记支持HTML Events Reference中描述的所有事件属性

浏览器支持 (Browser Support)

ChromeFirefoxIEOperaSafariAndroid
YesYesYesYesYesYes