Now what kind of question is that?? If you mean you want to make columns then thats quite easy in CSS. <style type="text/css"> #div1 { width: 40%; margin: 0 5%; padding: 0; float: left; } #div2 { width: 40%; margin: 0 5%; padding: 0; float: right; /* or can also be left. As the total width of the two divs are 40%+40%[the width of boxes] + 5%*(2+2) [For left right margin of both the divs = 100% */ } </style> <div id="div1"> <!--Left box content here --> </div> <div id="div2"> <!-- Right box content here --> </div> HTML: I hope this solves your problem! Please be precise next time!