From 2b797fa365225cb6ffed67f085fce54603dfc4a1 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Tue, 20 Nov 2012 09:39:23 +0100 Subject: [PATCH] asciidoc css: explicitly set text-align: left; for h* (Thanks Miroslav) Otherwise, the default is text-align: justify; which looks odd in some browsers/resolutions. --- css/xhtml11.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/xhtml11.css b/css/xhtml11.css index 52f22e3..f80b163 100644 --- a/css/xhtml11.css +++ b/css/xhtml11.css @@ -26,6 +26,7 @@ div.listingblock tt { h1, h2, h3, h4, h5, h6 { margin-top: 1.2em; margin-bottom: 0.5em; + text-align: left; } h2 { -- 2.39.5