Procházet zdrojové kódy

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

Karol Kosek před 3 roky
rodič
revize
049abbc417
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  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;
 }
 
+s,
+del {
+    text-decoration: line-through;
+}
+
 strong,
 b {
     font-weight: bold;