Browse Source

LibWeb: Strike-through <s> and <del> elements by default

Karol Kosek 3 years ago
parent
commit
049abbc417
1 changed files with 5 additions and 0 deletions
  1. 5 0
      Userland/Libraries/LibWeb/CSS/Default.css

+ 5 - 0
Userland/Libraries/LibWeb/CSS/Default.css

@@ -41,6 +41,11 @@ ins {
     text-decoration: underline;
     text-decoration: underline;
 }
 }
 
 
+s,
+del {
+    text-decoration: line-through;
+}
+
 strong,
 strong,
 b {
 b {
     font-weight: bold;
     font-weight: bold;