1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-14 19:45:21 +02:00

[ticket/10734] Used pseudo class for clearing

Instead of using a separate class for clearing, pseudo :after class is
added.

PHPBB3-10734
This commit is contained in:
Shibu Lijack 2012-04-02 00:05:37 +05:30
parent 33a10f57f9
commit a728b08e90

View File

@ -289,6 +289,12 @@ a#logo:hover {
background-position: 100% 0;
}
.inner:after {
content: '';
clear: both;
display: block;
}
.rowbg {
margin: 5px 5px 2px 5px;
}