Since i am new to CSS, i am not sure if the following page layout is possible using Div/CSS or shall i use HTML table?.
i want to design my page such that, Left sid
There is another way to make table by div/css
div/css
- html Left Col ... Middle Col ... Right Col ...
...
#container { display: table; } #row { display: table-row; } #left, #right, #middle { display: table-cell; }
#container { display: table; }
#row { display: table-row; }
#left, #right, #middle { display: table-cell; }