首页htmltable_columnPage Widget - 如何风格表列背景

Page Widget - 如何风格表列背景

我们想知道如何风格表列背景。

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of HTML table column groups</title>
</head>
<body>
  <table border="1" cellpadding="10">
    <colgroup>
      <col style="background: #bed65a;">
      <col style="background: #f8d97f;">
    </colgroup>
    <tr>
      <td>row 1, cell 1</td>
      <td>row 1, cell 2</td>
    </tr>
    <tr>
      <td>row 2, cell 1</td>
      <td>row 2, cell 2</td>
    </tr>
  </table>
</body>
</html>