<colgroup> 標籤
定義和用法
<colgroup> 標籤定義表格列的組。 通過此標籤,您可以對列進行組合,以便格式化。 該元素只有在 <table> 中才是合法的。
HTML 4.01 與 HTML 5 之間的差異
4.01 中的大多數屬性都不再得到支援。
風信網(www.ithov.com)提示和注釋
注釋:colgroup 元素只能包含 col 元素。
注釋:colgroup 元素無法創建表格列。 如需創建列,必須在 tr 元素內規定 td 元素。
提示:如果需要向一個列組規定相同的屬性值,請使用該元素。
提示:如果需要為一個或多個列規定屬性值,請使用 col 元素。
例子:
<table>
<colgroup span="3" style="color:blue"></colgroup>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</table>
屬性
屬性 值 描述 4 5 align right left center justify char 定義列中的儲存格內容的水準對齊方式。 4 char character 定義一個字元,按照該字元對齊文本。 4 &HTTP://www.aliyun.com/zixun/aggregation/37954.html">nbsp; charoff pixels % 規定第一個對齊字元的偏移量。 4 span number 定義 <colgroup> 應當橫跨的列數。 4 5 valign top middle bottom baseline 定義列中的儲存格內容的垂直對齊方式。 4 width % pixels relative_length 定義列的寬度。 4
標準屬性
class, contenteditable, coNtextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, titl e如需完整的描述,請訪 HTML 5 中標準屬性。
事件屬性
onabort, onbeforeunload, onblur, onchange, onclick, oncoNtextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmous edown, onmousemove, onmouseover, onmouseout, onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload如需完整的描述,請訪 HTML 5 中事件屬性。