实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<html>
2
<body>
3
4
<table border="1" width="100%">
5
  <tr>
6
    <th axis="name">Name</td>
7
    <th axis="contact">Email</td>
8
    <th axis="contact">Phone</td>
9
    <th axis="contact">Address</td>
10
  </tr>
11
  <tr>
12
    <td>John Doe</td>
13
    <td>someone@example.com</td>
14
    <td>+45342323</td>
15
    <td>Rosevn 56,4300 Sandnes,Norway</td>
16
  </tr>
17
</table>
18
19
<p><b>Note:</b> The axis attribute is not supported by any of the major browsers.</p>
20
<p><b>Note:</b> The axis attribute is not supported in HTML5.</p>
21
22
</body>
23
</html>
24