Is it possible call another external CSS file from external CSS file?
1 Answer
Yes, like so:
@import "relative/path/to/css.css";
2 Comments
akamike
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 stackoverflow.com/questions/1478997/… for more.Jakub Hampl
Akamike is right. But sometimes
@import does come in handy.