使用
以下是屬性-
屬性 | #值 | 描述
|
---|---|---|
對齊 | 右##左#居中對齊char | 定義水平對齊方式,Html5 不支援。 |
#字元 | 定義用於對齊文字的字元(與align ="char"一起使用), | Html5 不支援。 |
#像素 | 定義 |
|
「跨度 |
|
|
<!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>
以上是如何在HTML中包含表格列的群組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!