表組みのタイトルの表示位置を指定する

caption-side

{ caption-side キャプション・サイド : 表示位置; }

caption-sideプロパティは、表組みのタイトル(caption要素)の表示位置を指定します。

初期値 top
継承 あり
適用される要素 caption要素
モジュール CSS3 Tables Module

値の指定方法

表示位置

top 表組みの上にタイトルを表示します。
bottom 表組みの下にタイトルを表示します。
inherit 親要素の設定を継承します。

サンプルコード

table.sample2{
  table-layout: fixed;
  caption-side: bottom;
  width: 100%;
}
Firefox