Difference between tables/CSS based websites
Thursday, July 6th, 20061. CSS will reduce the download time of a webpage. For e.g. If a website has 400 pages, the layout of all the pages can be controlled in a single CSS file
2. Changes can be done easier and it will get reflected on all the pages. For e.g. if the font style of the footer needs to be changed, then it can be done in CSS file.
3. Search Engine crawlers have a much easier time reading CSS layouts. This results in better search engine ranking because the crawlers have an easier time navigating the site.
4. It makes redesigns more efficient and less expensive. Page constructed using CSS saves more bandwidth.
5. In case of CSS based sites the design is usually held in one or more external files, but that is not the way the tables based sites will work, the design will be taken care in all the pages of the site.
6. By using CSS you’re actually front loading the design, rather than spreading it evenly across the site. The means that the first page you hit can actually take longer to download than the equivalent table based page. Once the styles have been downloaded, they will usually be cached and not need downloading again. However the first page on a site is the one page that you really don’t want to see such a performance hit.