<!DOCTYPE html> <html> <head> <style type="text/css"> #parent { margin-bottom: 10px; } #float { float: left; height: 40px; width: 100px; background-color: green; } #clear { clear: left; margin-top: 20px; } #separator { height: 20px; background-color: green; } </style> </head> <body> <div id="parent"> <div id="float"></div> <div id="clear"></div> </div> <div id="separator"></div> </body> </html>