user7624153
user7624153

Reputation:

Error while importing compass/css3

I'm new to css and I am trying to import compass/css3 file into my css code but it is showing an error "fail to load resource". How to resolve it ?

@import "compass/css3";

Upvotes: 0

Views: 1770

Answers (1)

Anshul Jain
Anshul Jain

Reputation: 785

Try this:

@import url('compass/css3.css');

Upvotes: 3

Related Questions