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