Is it possible call another external CSS file from external CSS file?
Asked
Active
Viewed 124 times
0
-
That's why they're called "cascading" :p – Artefacto May 17 '10 at 22:40
1 Answers
5
Yes, like so:
@import "relative/path/to/css.css";

Jakub Hampl
- 39,863
- 10
- 77
- 106
-
I would say that `link` is considered better practice. `@import` does not download the imported files in parallel to everything else, where as `link` does. Use `link` for improved page performance. See http://stackoverflow.com/questions/1478997/import-or-link-for-importing-stylesheets for more. – akamike May 17 '10 at 22:46
-
1