菜鸟教程 tryhtml_caption_align 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <p>align="left":</p>
<table border="1">
  <caption align="left">My savings</caption>
  <tbody><tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</tbody></table>

<p>align="right":</p>
<table border="1">
  <caption align="right">My savings</caption>
  <tbody><tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</tbody></table>

<p>align="top":</p>
<table border="1">
  <caption align="top">My savings</caption>
  <tbody><tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</tbody></table>

<p>align="bottom":</p>
<table border="1">
  <caption align="bottom">My savings</caption>
  <tbody><tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</tbody></table>