html <colgroup> 標簽用于對表格中的列進行組合,以便對其進行格式化 使用 <colgroup> 標簽可以向整個列應用樣式,而不需要重復為每個單元格或每一行設置樣式 只能在 <table> 元素之內,在任何一個 <caption> 元素之后,在任何一個 <thead>、<tbody>、<tfoot>、<tr> 元素之前使用 <colgroup> 標簽 如果想對 <colgroup> 中的某列定義不同的屬性,可以在 <colgroup> 標簽內使用 <col> 標簽 屬性
范例<colgroup> 和 >col> 標簽為表格中的三個列設置了背景色 <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>$53</td> </tr> </table> |