Browse Source

LibWeb: Give the <blockquote> element some margins in the UA style

Andreas Kling 5 years ago
parent
commit
f270f1f274
1 changed files with 5 additions and 0 deletions
  1. 5 0
      Libraries/LibWeb/CSS/Default.css

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

@@ -143,6 +143,11 @@ basefont {
     display: block;
 }
 
+blockquote {
+    margin-left: 25px;
+    margin-right: 25px;
+}
+
 /* FIXME: I think this should only apply in quirks mode. */
 table {
     text-align: left;