Reputation:
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
Reputation: 785
Try this:
@import url('compass/css3.css');
Upvotes: 3