案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
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 axis="name">George Bush</td>
13
    <td axis="contact">someone@example.com</td>
14
    <td axis="contact">+789451236</td>
15
    <td axis="contact">Fifth Avenue New York,USA</td>
16
  </tr>
17
</table>
18
19
<p>几乎没有浏览器支持 axis 属性。</p>
20
21
</body>
22
</html>
23