summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2007-09-13 19:17:24 +0200
committerThomas Schwinge <tschwinge@gnu.org>2007-09-13 19:17:24 +0200
commite67759e31d3b4e30ba958e1e27217cb5fad4e0ba (patch)
tree278b5c22e6bece96bbcc538c6698bc9899b7a474
parent7f08461e8d6af8a5ffebd085fddfeb8419da1b60 (diff)
Inhibit `hr's from being shifted to the right. Thanks to Colin Leitner.
-rw-r--r--local.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/local.css b/local.css
index 9424c5cd..91c725de 100644
--- a/local.css
+++ b/local.css
@@ -10,13 +10,13 @@
hr
{
- /*
- * Why the heck are these horizontal rules shifted to the right? I don't
- * understand. --tschwinge
- */
height: 1px;
border-style: none;
background-color: black;
+ /* No idea, if this is ``just'' a Firefox bug (looks fine without the
+ * following statement in konqueror), but it for sure inhibits the `hr's from
+ * being shifted to the right. */
+ margin-left: 0px;
}
pre