<欄>


HTML <col> 標籤

#實例

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>

<table border="1">
  <colgroup>
    <col span="2" style="background-color:red">
    <col style="background-color:yellow">
  </colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td></td>
  </tr>
  <tr>
    <td>5869207</td>
    <td>My first CSS</td>
    <td></td>
  </tr>
</table>

</body>
</html>

執行實例»

點擊"運行實例" 按鈕查看線上實例


瀏覽器支援

1000.png

所有主流瀏覽器都支援< col> 標籤。


標籤定義並使用說明

<col> 標籤規定了 <colgroup> 元素內部的每一列的列屬性。

透過使用 <col> 標籤,可以向整個列套用樣式,而不需要重複為每個儲存格或每一行設定樣式。


HTML 4.01 與 HTML5之間的差異

HTML5 中不再支援 HTML 4.01 中的大部分屬性。


HTML 與 XHTML 之間的差異

在 HTML 中,<col> 標籤沒有結束標籤。

在 XHTML 中,<col> 標籤必須被正確的關閉。


屬性

屬性#值描述
alignleft
#      right
     center
     justify
#      char
HTML5 不支援。 規定與 <col> 元素相關的內容的水平對齊方式。
charcharacter#HTML5 不支援。 規定根據哪個字元來對齊與 <col> 元素相關的內容。
charoffnumber#HTML5 不支援。 規定第一個對齊字元的偏移量。
spannumber#規定 <col> 元素應該橫跨的列數。
valigntop
#      middle
#      bottom
#      baseline
HTML5 不支援。 規定與 <col> 元素相關的內容的垂直對齊方式。
width#%
     pixels
#      relative_length
HTML5 不支援。 Specifies the width of a <col> element


全域屬性

<col> 標籤支援HTML 的全域屬性。


事件屬性

<col> 標籤支援 HTML 的事件屬性。


#