HTML>TABLE05
 キャプションの位置を指定したい画像 
<caption align="★">~</caption>   
非推奨 align属性
★・・・・・・top, bottom, left, right
align属性で、キャプションの位置を指定します。指定できる値は次のとおりです。
  top      表の上に中央揃えで表示(初期値)
  bottom    表の下に中央揃えで表示
  left      表の左側に表示
  right      表の右側に表示
align属性は、HTML4.01では非推奨とされています。キャプションの位置はCSSで指定。

<table border="3">
<caption align="bottom">表のタイトル</caption>
<tr>
<td>データセル1-1</td>
<td>データセル1-2</td>
<td>データセル1-3</td>
</tr>

<tr>
<td>データセル2-1</td>
<td>データセル2-2</td>
<td>データセル2-3</td>

</tr>

</table>


キャプションの画像そしていしたいプレビュー
inserted by FC2 system