Create Three column layout using div and CSS
Wednesday, March 19th, 2008In this tutorial you will learn to create a three column layout using css, and divs
Here is the sample sketch of layout.
1. First of all we need to create a container for page contents.
<div id=”container”> </div>
2. Now create three partitions of it by creating three divs(header, content and footer) inside the container tag.
3. Finally add […]