diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2007-09-13 19:17:24 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2007-09-13 19:17:24 +0200 |
commit | e67759e31d3b4e30ba958e1e27217cb5fad4e0ba (patch) | |
tree | 278b5c22e6bece96bbcc538c6698bc9899b7a474 /local.css | |
parent | 7f08461e8d6af8a5ffebd085fddfeb8419da1b60 (diff) | |
download | web-e67759e31d3b4e30ba958e1e27217cb5fad4e0ba.tar.gz web-e67759e31d3b4e30ba958e1e27217cb5fad4e0ba.tar.bz2 web-e67759e31d3b4e30ba958e1e27217cb5fad4e0ba.zip |
Inhibit `hr's from being shifted to the right. Thanks to Colin Leitner.
Diffstat (limited to 'local.css')
-rw-r--r-- | local.css | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |