Jump to content

faster loading pages


dreamwest

Recommended Posts

Advantage of CSS include cleaner codes, smaller html pages and separation of content from layout. Making site-wide layout changes is simpler than tables method.

 

Disadvantage is that older browsers may not support it well (eg. NS 4.7x is really bad), whereas even the most recent browsers are not yet 100% compliant - very close but still not one-hundred-percent.

Link to comment
https://forums.phpfreaks.com/topic/133020-faster-loading-pages/#findComment-691839
Share on other sites

Also Yahoo is working on making their browser more semantically aware, meaning that they will look at tags, and expect the data inside those tags to be the type of data that is in the tag.

 

For example if you have a label for an input in a paragraph (p) tag, it's not going to realize it's a label. So if you have non-tabular data in a table, it's going to think it's tabular data, and your page won't index as well as if you set everything up semantically.

 

And you know if Yahoo is doing it, google will be following soon.

Link to comment
https://forums.phpfreaks.com/topic/133020-faster-loading-pages/#findComment-691915
Share on other sites

Also keep in mind that external stylesheets are Cached by the browser, which again may make your page load faster.

 

You may also wan't to consider using CSS Sprites, as this often creates a huge improvement, both in file-sizes and in limiting the http requests to load a page.

Link to comment
https://forums.phpfreaks.com/topic/133020-faster-loading-pages/#findComment-692046
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.