HTML 标签列表

HTML <colgroup> 标签

HTML <colgroup> 标签指定 HTML 表格中的列组。它用作一个或多个 <col> 元素的父容器,以在 HTML 表格中应用不同的属性。

注意:<colgroup> 标签必须在 <caption> 之后和 <thead> 或 <tbody> 元素之前与 <table> 元素一起使用。

句法

<colgroup>......</colgroup>

以下是关于 HTML <colgroup> 标签的一些规范

展示没有任何
开始标签/结束标签开始标签和结束标签
用法HTML表格

例子

<!DOCTYPE html>  
<html>  
<head>  
  <title>Colgroup tag</title>  
</head>  
<body>  
<h2>Example of Colgroup Tag</h2>  
<table border="1">  
  <colgroup>  
      <col  style="background-color: green" width="40">  
      <col span="2" style="background-color:   #ff7256" width="80">  
  </colgroup>  
  <tr>  
      <th>Sr.No</th>  
      <th>Product</th>  
      <th>Price</th>  
  </tr>  
  <tr>  
      <td>1</td>  
      <td>Rice</td>  
       <td>85</td>  
  </tr>  
  <tr>  
      <td>2</td>  
      <td>Butter</td>  
       <td>260</td>     
     </tr>  
  <tr>  
      <td>3</td>  
      <td>Mango</td>  
       <td>125</td>  
  </tr>  
</table>  
</body>  
</html>

输出:

属性

属性属性值描述
align
  • left

  • center

  • right

  • justify

  • char

它指定每个列单元格的水平对齐方式。
(HTML5 不支持)。
charcharacter它根据列中的字符指定内容的对齐方式。如果 align 未设置为 char,它将被忽略。(HTML5 不支持)。
charoffnumber它设置从 char 属性指定的对齐字符偏移列数据的字符数。(HTML5 不支持)。
spannumber它指定了列数
valign
  • top

  • middle

  • bottom

  • baseline

它指定列的垂直对齐方式。
(HTML5 不支持)。
width
  • %

  • Pixels

  • relative_length

它指定列的宽度。
(HTML5 不支持)。

全局属性

HTML <colgroup> 标签支持 HTML 中的所有全局属性。

事件属性

HTML <colgroup> 标签支持 HTML 中的所有事件属性。

支持浏览器

元素ChromeIEFirefoxSafariOpera
<colgroup>YesYesYesYesYes


上一主题 HTML <col> 标签 下一主题 HTML <data> 数据标签
  • 使用社交账号登录,本站支持
全部评论(0)