caption-side プロパティ
caption-side プロパティは、<table> エレメントに付ける <caption> の表示位置を指定するプロパティです。
表示位置は <table> に対して上(デフォルト)、または下( bottom )です。
table {
caption-side: bottom;
}
詳しくは Example を参照してください
<caption>エレメントに関するプロパティです。
ページ内 Index
構文(Syntax)
CSS
caption-side: top | bottom | initial | inherit ;
DOM ( JavaScript )
String = object.style.captionSide;
object.style.captionSide=" top | bottom | initial | inherit ";
値(Values)
| Value | 摘要 |
|---|---|
| top | 初期値(default値)、キャプションをテーブルの上に表示 |
| bottom | キャプションをテーブルの下に表示 |
| initial | 初期値に戻す |
| inherit | 親エレメントのプロパティを継承 |
備考(Remarks)
| 初期値(Default value) | top |
| 継承(Inherited) | Yes |
| 変化(Animatable) | No |
