column

Create 3 Column CSS Layouts Like A CSS God!

Here’s the kindergarten version of a 3 Column CSS layout that you’re going to get from most other websites: <div id="header">header stuff</div> <div id="left">left stuff</div> <div id="center">center stuff</div> <div id="right">right stuff</div> <div id="footer">footer stuff</div> Simple enough right? The alignment is done in your style sheet, where the left would float left, the center would also float left and the right would float right. You could set all your styles based on these column ids.