Less of the scaremongering, please. There is nothing at all wrong with using CSS to effect layout. That's what any competent author would do in this day and age.
We've already had enough with the zindexes and the word spacing. What more?
Space? As in the number of bytes in a file? You couldn't be more wrong. A well-authored document is usually much less (I've seen 40% savings), and this increases over a site where style sheets are shared - in a table-based site, each document must maintain its own layout.
40%?!
Code:
<table align="center"><tr><td>Hello m8</td><td>Hi there buddy</tr></table>
Versus:
Code:
<div align="center"><div style="width: 150px;"><div style="float:left">Hello m8</div><div style="float:right">Hi there buddy</div></div></div>
Oh yeah, and if you combine the width div with the root, it doesnt align in the center for ie. Oh well.
Bookmarks