<html> <head> <title>Div example</title> </head> <body> <style type="text/css"> .clear { clear: left; } .left { float: left; width: 120px; padding: 10px; border: 1px solid; text-align: center; } .right { float: right; width: 120px; padding: 10px; border: 1px solid; text-align: center; } </style> <div class="left"> 1 </div> <div class="clear"></div> <div class="left"> 3 </div> <div class="right"> 2 </div> </body> </html>