Jelajahi Sumber

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!
Karol Kosek 3 tahun lalu
induk
melakukan
6a1ae4c185
1 mengubah file dengan 9 tambahan dan 0 penghapusan
  1. 9 0
      Userland/Libraries/LibWeb/CSS/Default.css

+ 9 - 0
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,