From 6a1ae4c18545bf16bcba3588c0b8399f78a0bbd0 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sat, 19 Feb 2022 21:21:54 +0100 Subject: [PATCH] LibWeb: Make i, em, address, cite, dfn and var elements italic Although it is not said that some of the elements need to be italic, *most* browsers mark them as such to distinguish them from the normal text, so let's do that too! --- Userland/Libraries/LibWeb/CSS/Default.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index 4ed18ed86a..d60d0f4d53 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -46,6 +46,15 @@ b { font-weight: bold; } +i, +em, +address, +cite, +dfn, +var { + font-style: italic; +} + html, address, blockquote,