The parent <div>
tag doesn't have any width specified. Use it for the child <div>
tags, it could be percentage or pixel, but whatever it would be,it should link to its appropriate positions:
<div id="MainDiv" style="width:60%;">
<div id="Div1">
...
</div>
<div id="Div2">
...
</div>
...
</div>