vote up 22 vote down star
1

Is it possible to include one css file into another?

flag

71% accept rate

7 Answers

vote up 30 vote down check

YES!

@import url("base.css");
link|flag
Huh, has @import always been present in CSS? I thought there wasn't a way to do this. – DGentry Sep 29 '08 at 4:31
Color me humbled! – Ben Hoffstein Sep 29 '08 at 4:41
Yes, @import has been there from the beginning on: w3.org/TR/REC-CSS1.html#the-cascade – Rene Saarsoo Sep 29 '08 at 5:43
vote up 15 vote down

Yes. Importing CSS file into another CSS file is possible.

It must be the first rule in the style sheet using the @import rule.

@import "mystyle.css";
@import url("mystyle.css");

The only caveat is that older web browsers will not support it. In fact, this is one of the CSS 'hack' to hide CSS styles from older browsers.

Refer to this list for browser support.

link|flag
vote up 6 vote down

The CSS @import rule does just that. E.g.,

@import url('/css/common.css');
@import url('/css/colors.css');
link|flag
vote up 4 vote down

In some cases it is possible using @import "file.css", and most modern browsers should support this, older browsers such as NN4, will go slightly nuts.

Note: the import statement must precede all other declarations in the file, and test it on all your target browsers before using it in production.

link|flag
vote up 2 vote down

Yes, use @import

detailed info easily googled for, a good one at http://webdesign.about.com/od/beginningcss/f/css_import_link.htm

link|flag
vote up 1 vote down

the @import url("base.css"); works fine but bare in mind that every @import statement is a new request to the server. This might not be a problem for you but when optimal performance is required you should avoid the @import.

link|flag
vote up 0 vote down

Yes.

@import: "your.css";

The rule is documented here.

link|flag
This syntax is wrong. – bcat Oct 26 at 23:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.