Skip to content

Commit 56904bc

Browse files
committed
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>
1 parent 64f6295 commit 56904bc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

doc/static/acrn-custom.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ table.align-center {
9191
display: table !important;
9292
}
9393

94+
/* put the table caption at the bottom, as done for figures */
95+
table {
96+
caption-side: bottom;
97+
}
98+
9499

95100
.code-block-caption {
96101
color: #000;

0 commit comments

Comments
 (0)