案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<p>align="left":</p>
5
<table border="1">
6
  <caption align="left">Monthly savings</caption>
7
  <tr>
8
    <th>Month</th>
9
    <th>Savings</th>
10
  </tr>
11
  <tr>
12
    <td>January</td>
13
    <td>$100</td>
14
  </tr>
15
</table>
16
17
<p>align="right":</p>
18
<table border="1">
19
  <caption align="right">Monthly savings</caption>
20
  <tr>
21
    <th>Month</th>
22
    <th>Savings</th>
23
  </tr>
24
  <tr>
25
    <td>January</td>
26
    <td>$100</td>
27
  </tr>
28
</table>
29
30
<p>align="top":</p>
31
<table border="1">
32
  <caption align="top">Monthly savings</caption>
33
  <tr>
34
    <th>Month</th>
35
    <th>Savings</th>
36
  </tr>
37
  <tr>
38
    <td>January</td>
39
    <td>$100</td>
40
  </tr>
41
</table>
42
43
<p>align="bottom":</p>
44
<table border="1">
45
  <caption align="bottom">Monthly savings</caption>
46
  <tr>
47
    <th>Month</th>
48
    <th>Savings</th>