From 049abbc417eda84d843b7bc265bd1f767e1e7be1 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sun, 20 Feb 2022 10:56:27 +0100 Subject: [PATCH] LibWeb: Strike-through and elements by default --- Userland/Libraries/LibWeb/CSS/Default.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index 6db9a63de6..f74d26ce64 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -41,6 +41,11 @@ ins { text-decoration: underline; } +s, +del { + text-decoration: line-through; +} + strong, b { font-weight: bold;