PHP interesse |
|
Handig is dus om een class te maken om floats te clearen.
.clear {
clear: both;
overflow: hidden;
font-size: 0;
line-height: 0;
height: 0;
}
.clear { clear: both; overflow: hidden; font-size: 0; line-height: 0; height: 0; }
En die plaats je dus boven je footer;
<div class="clear"></div>
<div class="footer">...</div>
<div class="clear"></div>
<div class="footer">...</div>
|