使用
以下是屬性 –
屬性 | 值 | 描述 |
---|---|---|
對(duì)齊 | 右
左 居中 對(duì)齊 char |
定義水平對(duì)齊方式,Html5 不支持。 |
字符 | 字符 | 定義用于對(duì)齊文本的字符(與align =”char”一起使用), Html5 不支持。 |
查奧夫 | 像素 | 定義
|
跨度 | number | 定義
|
Valign | 底部
中間 頂部 基線 |
定義垂直對(duì)齊方式,Html5 不支持。 |
寬度 | 像素或% | 指定當(dāng)前列跨越的每列的默認(rèn)寬度元素,在 Html5 中不受支持。 |
示例
您可以嘗試運(yùn)行以下代碼來實(shí)現(xiàn) HTML 中的
<!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 = "4"> <col width = "40"></col> <col width = "70"></col> <col width = "100"></col> <col width = "130"></col> <col width = "160"></col> </colgroup> <tr> <td>One</td> <td>Two</td> <td>Three</td> <td>Four</td> <td>Five</td> </tr> </table> </body> </html>
登錄后復(fù)制
以上就是如何在HTML中包含表格列的組?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!