0

Is it possible call another external CSS file from external CSS file?

Martin Konecny
  • 57,827
  • 19
  • 139
  • 159

1 Answers1

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
    Akamike is right. But sometimes `@import` does come in handy. – Jakub Hampl May 17 '10 at 22:47