From: Zbigniew Jędrzejewski-Szmek Date: Mon, 22 Feb 2021 20:10:04 +0000 (+0100) Subject: docs: align tables vertically to top X-Git-Tag: v248-rc1~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=85c8eac822c15f228951ba4aef0174c8ece4d231;p=thirdparty%2Fsystemd.git docs: align tables vertically to top Fixes #18706. --- diff --git a/docs/style.css b/docs/style.css index 8a2ae719da8..951e3f5a48b 100644 --- a/docs/style.css +++ b/docs/style.css @@ -116,6 +116,11 @@ footer { margin-top: 4rem; } +/* Make tables vertically aligned to the top */ +tbody td { + vertical-align: top; +} + /* Github Code Highlighting */ .highlight table td { padding: 5px; } .highlight table pre { margin: 0; }