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