diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-02 16:54:31 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-02 16:54:31 -0400 |
commit | 28dcb52a6c5b60302db285a13bf84e5e90c39cbc (patch) | |
tree | e988de12a6302646549e35707e262c979c204f1b /doc/style.css | |
parent | 36688de7c66bf0a1c252c04b6ee79da04232a742 (diff) | |
download | ikiwiki-28dcb52a6c5b60302db285a13bf84e5e90c39cbc.tar ikiwiki-28dcb52a6c5b60302db285a13bf84e5e90c39cbc.tar.gz |
force article and header to display as blocks
iceweasel 3.5.9 does not know to display these as blocks, resulting
in bad displays of blogs
Diffstat (limited to 'doc/style.css')
-rw-r--r-- | doc/style.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/style.css b/doc/style.css index ea18ca0c3..82de8fe6e 100644 --- a/doc/style.css +++ b/doc/style.css @@ -4,6 +4,13 @@ * local.css and use it to override or change settings in this one. */ +article { + display: block; +} +header { + display: block; +} + .header { margin: 0; font-size: 22px; |