Is it possible to include one CSS file in another?
2Answer
Yes:
@import url("base.css");
Note:
- The
@importrule must precede all other rules (except the@charsetrule); and - Additional
@importstatements require additional server requests.
Aggregate CSS into one file to avoid multiple HTTP requests. That is, copy the contents of base.css and special.css into base-special.css and reference only base-special.css).
In 2008, not all browsers supported @import (see Browser Compatibility).
- answered 10 years ago
- G John
The CSS @import rule does just that. E.g.,
@import url('/css/common.css');
@import url('/css/colors.css');
- answered 10 years ago
- Gul Hafiz


Your Answer