HTML <colgroup> 标签
-
-
<colgroup>浏览器支持
Internet Explorer/Edge Chrome FireFox Safari Opera 支持 支持 支持 支持 支持 -
<colgroup>实例
尝试一下<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style> </head> <body> <table> <colgroup> <col style="background-color:red"> <col style="background-color:yellow"> <col style="background-color:green"> </colgroup> <tr> <th>书号</th> <th>书名</th> <th>金额</th> </tr> <tr> <td>3476896</td> <td>Java教程</td> <td>$53</td> </tr> </table> </body> </html>
-
<colgroup>HTML4.01和HTML5之间的差异
HTML5中不支持HTML 4.01中的大多数属性。 -
-
<colgroup>全局属性
<colgroup>标签还支持全局属性。 查看有关全局属性的更多知识。 -
<colgroup>事件属性
<colgroup>标签还支持事件属性。 查看有关事件属性的更多知识。 -
<colgroup>默认CSS设置
colgroup { display: table-column-group; }