CSS Float
<!DOCTYPE html> <html> <head> <style> .box { float: left; width: 100px; height: 60px; background: #eee; } .footer { clear: both; } </style> </head> <body> <div class="box">Floated content</div> <div class="footer">Footer content</div> </body> </html>