From ce86ac99f49d2cfa7bd2360ed73ccd86b0494f6a Mon Sep 17 00:00:00 2001 From: David J Birnbaum Date: Sun, 9 Jun 2024 16:50:47 -0400 Subject: [PATCH] Add Roman numeral counter to major section --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 3746525..ac79c2f 100644 --- a/style.css +++ b/style.css @@ -67,6 +67,10 @@ h6 { position: relative; /* otherwise IE cuts off top of H1 with increased line-height */ } +h3:before { + counter-increment: level1; + content: counter(level1, upper-roman) ". "; +} p { line-height: 1.25em; }