doc: CSS tweak for table caption location

Default behavior is for figure captions below the figure, but table
captions above the table.  Tweak the CSS for tables to put the caption
below instead.

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder 2018-08-01 11:08:14 -07:00 committed by David Kinder
parent 64f62959dc
commit 56904bc235

View File

@ -91,6 +91,11 @@ table.align-center {
display: table !important; display: table !important;
} }
/* put the table caption at the bottom, as done for figures */
table {
caption-side: bottom;
}
.code-block-caption { .code-block-caption {
color: #000; color: #000;