From: Mike N. <mh...@us...> - 2003-01-26 17:05:53
|
phpWS team, I found these links interesting. Methods are provided for hiding CSS from buggy browsers. This means we could avoid the multiple style sheet mess, and concentrate on W3C WAI standards. How to hide CSS from buggy browsers http://w3development.de/css/hide_css_from_browsers/ Summary Table http://w3development.de/css/hide_css_from_browsers/summary/ Argument against separate style sheets: http://css.nu/pointers/point-tip.html Problem: CSS is cool, but if you take full advantage of it, it blows up in IE3 and NS4, with some major glitches even in IE4. How to get around the hump? One way is to write separate stylesheets for each implementation, and serve each with a script. This is tedious, and tends to encourage workaround coding, which will turn buggy behavior into "legacy support issues." Recommendation: http://w3development.de/css/hide_css_from_browsers/import/ @import url("../hide1a.css"); -- Mike Noyes <mhnoyes @ users.sourceforge.net> http://sourceforge.net/users/mhnoyes/ http://leaf-project.org/ http://sitedocs.sf.net/ http://ffl.sf.net/ |