You are here: irt.org | FAQ | CSS | Q5405 [ previous next ]
There are 2 valid ways of importing style rules from other style sheets:
@import "faq.css"; @import url(myway.css);
So that browsers can avoid retrieving resources for unsupported media types, authors may specify media-dependent @import rules using the following code:
@import url(readable.css) print; @import url(visual.css) projection, tv;