hi every one whats the best way to have 3 colums in a layout? i dont want the whole site to be 3 columns i just want to put 3 columns in the content section so i would have something like: <div id="content"> <div id="leftcolumn> <p>bla bla bla here</p> </div> <div id="center column"> <p>......</p> </div> <div id="right column"> <p>.....</p> </div> thanks for any advice you can give.
Using float: left; is the best advice, just make sure you calculate the width of the divs so they won't exceed the container (content div). You should also check how the result on different web browsers.