Re: [WSG] variations on @import syntax?

2005-02-22 Thread John Horner
browser filters chart: http://www.dithered.com/css_filters/css_only/index.php Very useful, thanks a lot Russ. I'm a bit disturbed to see that this particular syntax will "Destroy" (i.e. hang) some Windows Netscape 4 versions: http://www.dithered.com/css_filters/css_only/import_single_quotes_no_u

Re: [WSG] variations on @import syntax?

2005-02-22 Thread russ - maxdesign
There are a wide range of variations. Each variation will allow you to target different browsers. Here are some: @import url(styles.css) not all; @import url(styles.css) all; @import url(styles.css) All; @import "null?\"\{"; @import "styles.css"; @import "null?\"\}"; @import'styles.css'; @import"s

[WSG] variations on @import syntax?

2005-02-22 Thread John Horner
I just noticed that on Zeldman's website his CSS is imported like this: @import "/c/c04.css"; which I don't think I've ever seen before. I normally see @import url(/c/c04.css) is there some hack being invoked here, or is it just a matter of style? ---