aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Stanley <shs@users.sourceforge.net>2007-04-23 00:09:10 +0000
committerJonathan Stanley <shs@users.sourceforge.net>2007-04-23 00:09:10 +0000
commit8644d1e9cb808191c2572bf819146f19a359d069 (patch)
tree5a032bf9f194a12164d14c33755b6518c934b2a7
parentb4a70a54b7f374aeafb1925aa34e6e8c49925965 (diff)
downloadforums-8644d1e9cb808191c2572bf819146f19a359d069.tar
forums-8644d1e9cb808191c2572bf819146f19a359d069.tar.gz
forums-8644d1e9cb808191c2572bf819146f19a359d069.tar.bz2
forums-8644d1e9cb808191c2572bf819146f19a359d069.tar.xz
forums-8644d1e9cb808191c2572bf819146f19a359d069.zip
Fix an edge case for completeness. <body> is the canvas in HTML after all.
git-svn-id: file:///svn/phpbb/trunk@7388 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/styles/prosilver/theme/common.css3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css
index 170d4b0a83..c065937d12 100644
--- a/phpBB/styles/prosilver/theme/common.css
+++ b/phpBB/styles/prosilver/theme/common.css
@@ -9,7 +9,7 @@
html {
font-size: 100%;
- /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */
+ /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers, height applied to body too */
height: 100%;
margin-bottom: 1px;
}
@@ -21,6 +21,7 @@ body {
background-color: #FFFFFF;
/*font-size: 62.5%; This sets the default font size to be equivalent to 10px */
font-size: 10px;
+ height: 100%;
margin: 0;
padding: 12px 0;
}