diff options
author | Shibu Lijack <shibulijack@gmail.com> | 2012-04-02 00:05:37 +0530 |
---|---|---|
committer | Shibu Lijack <shibulijack@gmail.com> | 2012-04-02 00:05:37 +0530 |
commit | a728b08e9056473f19906f93f38339b9eb8f2ffc (patch) | |
tree | 156af80ac45bee5d9ed74437393acfcf1cca5f53 | |
parent | 33a10f57f96d365bac2cd23764d23c76325d2c1b (diff) | |
download | forums-a728b08e9056473f19906f93f38339b9eb8f2ffc.tar forums-a728b08e9056473f19906f93f38339b9eb8f2ffc.tar.gz forums-a728b08e9056473f19906f93f38339b9eb8f2ffc.tar.bz2 forums-a728b08e9056473f19906f93f38339b9eb8f2ffc.tar.xz forums-a728b08e9056473f19906f93f38339b9eb8f2ffc.zip |
[ticket/10734] Used pseudo class for clearing
Instead of using a separate class for clearing, pseudo :after class is
added.
PHPBB3-10734
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 6fd410029d..790b9c154a 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -289,6 +289,12 @@ a#logo:hover { background-position: 100% 0; } +.inner:after { + content: ''; + clear: both; + display: block; +} + .rowbg { margin: 5px 5px 2px 5px; } |