Quick Tip: Include One CSS File into Another?
The short answer is:
@import url("base.css");
Howerever, 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. Think twice!!! Do you even need to have 5 stylesheet files.
Popularity: 1% [?]
Categories: CSS Tips, Posted on October 31, 2009 by Choppr | Log in


