HTML 之 table 標籤用法

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <style>
      table {
        text-align: center;
        border-collapse: collapse;
      }
    </style>
  </head>
  <body>
    <table border=1>
      <colgroup >
        <col width=100>
        <col width=100>
        <col width=70>
        <col width=50 bgcolor=red>
      </colgroup>
      <thead>
        <th>item</th><td>name</td><td>class</td><td>score</td>
      </thead>
      <tr>
        <th></th><td>tao1</td><td>1</td><td>100</td>
      </tr>
      <tr>
        <th></th><td>tao2</td><td>2</td><td>90</td>
      </tr>
      <tr>
        <th>average</th><td></td><td></td><td>95</td>
      </tr>
      <tfoot>
        <th>total </th><td></td><td></td><td>190</td>
      </tfoot>
    </table>
  </body>
</html>

clipboard.png

相關文章
相關標籤/搜索