案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<table border="1" width="100%">
5
  <tr>
6
    <th id="name">Name</td>
7
    <th id="Email">Email</td>
8
    <th id="Phone">Phone</td>
9
    <th id="Address">Address</td>
10
  </tr>
11
  <tr>
12
    <td headers="name">George Bush</td>
13
    <td headers="Email">someone@example.com</td>
14
    <td headers="Phone">+789451236</td>
15
    <td headers="Address">Fifth Avenue New York,USA</td>
16
  </tr>
17
</table>
18
19
20
</body>
21
</html>
22