实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<html>
2
<body>
3
4
<table border="1" width="100%">
5
  <thead>
6
    <tr>
7
      <th>Month</th>
8
      <th>Savings</th>
9
    </tr>
10
  </thead>
11
  <tbody align="right">
12
    <tr>
13
      <td>January</td>
14
      <td>$100</td>
15
    </tr>
16
    <tr>
17
      <td>February</td>
18
      <td>$80</td>
19
    </tr>
20
  </tbody>
21
</table>
22
23
<p><b>Note:</b> The align attribute is not supported in HTML5. Use CSS instead.</p>
24
25
</body>
26
</html>
27