I\'m using Less Framework 4 for two websites I\'m designing. In both designs I want to apply a 5 pixel border both on top and bottom of the document.
The problem: be
You could instead use a footer wrapper like this.
.footer { position: absolute; bottom: 0; border-bottom: solid @black 10px; width: 100%; }
and just insert this right before </body> or somehting
</body>
<div class="footer"></div>
Try changing it to:
height:auto;
for your HTML CSS.