Hey, Can I use <div> tags like tables in the following way: <div> <div> </div> </div> and expect that the inner <DIV> would be inside the other one? Basically I want to put a DIV that holds everything together (with a width of 1000) and have other DIVs (for header, left menu , and such) that are inside that first DIV (So that I can give these new DIVs positions relevant to the main DIV) Thanks for the help.. Nima
clear: both; Code (markup): will basically make sure that that element will appear below the last element(s) - check out CSS Clear properties. Float will help align the element correctly. This one I find especially useful with images