[question] How to do table-less webpages???

Being an old fashion webdesigner, I feel totally out of the loop when considering table-less designs. How do you do it? Does it require divs which are placed absolute rather than relative?

Please help! Tables are really getting on my nerves now.

#266430

You have to use, or atleast it makes it easier to use, CSS (cascading style sheets) along with DIVs. Have a look a Seph's site: http://www.seph.ws

and his css: http://www.seph.ws/css/green.css

#266442

I recently finished a layout where half way through I decided to go with tables, this is how I did it (this would be 1 row from the table):

<div> 

<div style="float: left;">

column 1 row 1

</div>

<div style="float: left;">

column 2 row 1

</div>

</div>

#266447