Double Vision – Give the Browsers CSS They Can Digest
Some but not all browsers support CSS2. You can deliberately code your website so that users of either kind of browser will see pages that are appropriate for what their browser can handle. Older browsers won't gag, but you will still be able to take advantage of what you can do with CSS2 in the newer browsers. Read on to find out how.
Double Vision – Give the Browsers CSS They Can Digest - The way of the dark side – code forking (Page 2 of 8 )
One widely used mistake is to bind the style sheet to the browser, rather than its capabilities. Developers use Javascript to determine the browser and write out bespoke style sheets via Javascript:
This not only means that users without Javascript will not get any styles whatsoever – something that happens in Netscape 4 anyway – but it also means that the styles need to be maintained in all those files. Furthermore, browsers that allow the user to mimic others, like Opera, might get a style sheet they cannot display at all. Browser sniffing (http://www.quirksmode.org/js/detect.html) is not future proof, and in most cases it's a waste of time. This also applies to solutions that chose the lesser evil – object detection(http://www.quirksmode.org/js/support.html).