08.caption-sideプロパティは、テーブルのキャプションの位置を設定するプロパティです。
適用要素:caption要素 *leftとrightの指定はブラウザによっては機能しない場合があります
*leftまたはrightを指定する場合caption要素のwidthを指定しないとうまく機能しません
*IEは標準モードでのみ機能(IE7以下は未対応)


※★CSS
table {
	width: 300px;
	height: 100px;
	border: 1px solid #cccccc;
}
td {
	border: 1px solid #cccccc;
}
caption {
	caption-side: bottom;
	text-align: left;
}


※★HTML
<table>
<caption>bottom</caption>
<tr>
	<td>データ</td>
	<td>データ</td>
</tr>
</table>


bottom
データ データ