From 7092f91d0220395d214e59043195c43136f90151 Mon Sep 17 00:00:00 2001 From: Roman Reiss Date: Sat, 21 Nov 2015 01:19:04 +0100 Subject: [PATCH] doc: fix rare case of misaligned columns By using the same unit for the offset of the main column as used for the left column width, we ensure that browsers render the columns conistently. Ref: https://github.com/nodejs/help/issues/32 PR-URL: https://github.com/nodejs/node/pull/3948 Reviewed-By: Jeremiah Senkpiel --- doc/api_assets/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index 3be4c88..f03753d 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -356,7 +356,7 @@ span.type { #column1.interior { width: 702px; - border-left: 13em solid #f2f5f0; + border-left: 234px solid #f2f5f0; padding-left: 2.0em; } -- 2.7.4