Fri, 2007-06-15 19:58
Hi i've created a wrapper which is positioned in the center of the page which has a 600px width, however within this i would like 5 columns each aligned so that their in a row, would this be possible with css ?
Any help would be much appreciated thanks
Sat, 2007-06-16 02:04
#1
Hi,
Hi,
Yes, this is possible with floats. You could do something like this:
#wrapper div { float: left; width: 120px; } div id="wrapper" div ...content /div div ...content /div div ...content /div div ...content /div div ...content /div /div
Sorry, I had to remove the "<" and ">" signs. They kept making the code disapear
Sat, 2007-06-16 18:00
#2
Thanks
Cheers i've modified the code slightly to suit my needs and it works a treat cheers.