Is it possible call another external CSS file from external CSS file?
Is this considered as good practice?
sshow
2010-05-17 22:42:17
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
2010-05-17 22:46:27
Akamike is right. But sometimes `@import` does come in handy.
Jakub Hampl
2010-05-17 22:47:46