CSS vs. Tables, advantages of CSS layouts
Why CSS is better than Tables?
CSS vs. Tables
There have been many articles written regarding CSS based design versus Table based design. Here are a few advantages of CSS layouts:
1. You don't need to worry about nested table tags when you use CSS (Cascading Style Sheets).
2. CSS is very flexible in positioning elements in website pages.
3. CSS based pages load faster than Table based pages. It may take similar time to load CSS based page at first. But once included CSS file is cached to the browser, subsequent pages load faster than regular Table based pages.
4. Using external CSS ...


