Eric Pascarello wrote:<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <style> .boxItem{ width: 50%; padding: 0px; margin: auto; } .leftItem{ float: left; width: 10%; background-color: #CFC; } .rightItem{ float: right; width: 10%; background-color: #FCC; } .contentItem{ background-color: #ccc; margin: 0 11%; } </style> </head> <body> <div class="boxItem"> <div class="rightItem">3</div> <div class="leftItem">1</div> <div class="contentItem">2</div> </div> </body> </html>