From 2cf47fed38799bccfa647b1aa3e90890aaff77db Mon Sep 17 00:00:00 2001 From: "David B. Kinder" Date: Wed, 1 Aug 2018 17:00:12 -0700 Subject: [PATCH] doc: tweak table CSS for caption location Table captions and figure captions, by default, appear in different locations. Move table captions below the table to match figures. Signed-off-by: David B. Kinder --- doc/static/zephyr-custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/static/zephyr-custom.css b/doc/static/zephyr-custom.css index 635157ec456..ef3e4d0e555 100644 --- a/doc/static/zephyr-custom.css +++ b/doc/static/zephyr-custom.css @@ -91,6 +91,10 @@ table.align-center { display: table !important; } +/* put the table caption at the bottom, as done for figures */ +table { + caption-side: bottom; +} .code-block-caption { color: #000;