From 85c8eac822c15f228951ba4aef0174c8ece4d231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 22 Feb 2021 21:10:04 +0100 Subject: [PATCH] docs: align tables vertically to top Fixes #18706. --- docs/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/style.css b/docs/style.css index 8a2ae719da..951e3f5a48 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; }