From 56eb767e33aa84beca2d41f45c4fae668d99058d Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 11 Feb 2021 18:53:57 -0600 Subject: [PATCH] don't let sub/superscripts affect line height --- incorporealcms/static/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/incorporealcms/static/css/style.css b/incorporealcms/static/css/style.css index 5593516..3c0221d 100644 --- a/incorporealcms/static/css/style.css +++ b/incorporealcms/static/css/style.css @@ -84,6 +84,15 @@ div.content { line-height: 1.4em; } +sup, sub { + vertical-align: baseline; + position: relative; + top: -0.4em; +} +sub { + top: 0.4em; +} + footer { display: block; font-size: 75%;