View Single Post
  #4 (permalink)  
Old 06-23-2008, 06:49 PM
TechieGuy's Avatar
TechieGuy TechieGuy is offline
Super Moderator
 
Join Date: Jul 2007
Location: Canada
Posts: 1,172
TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)TechieGuy has a rock solid WB reputation (over 300 points)
Default

When using stylesheets, go with external. The most significant improvement between internal and external CSS is download speed.

When a visitor requests your web page, the browser will look at the linked CSS file and download it. If you use the same CSS file on all your pages, then the browser will only download the CSS file once and used the cached version for subsequent pages.

For internal CSS, the CSS code will be downloaded everytime a page is requested by the browser, since it is part of the page and not separate.
Reply With Quote