0

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

1
  • That's why they're called "cascading" :p Commented May 17, 2010 at 22:40

1 Answer 1

5

Yes, like so:

@import "relative/path/to/css.css";
Sign up to request clarification or add additional context in comments.

2 Comments

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.
Akamike is right. But sometimes @import does come in handy.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.