when I use the instead of @import, my parent CSS sheet isn't properly being imported and by styling breaks. Can you advise ont he best way to import my parent sheet into the child theme sheet? th...
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-60040
I was looking for an answer as to if it is better to include two stylesheet links in the head or if to include one style sheet with an @import in that style sheet. really keen to know the best pr...
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-60000
Romit: The caching of a stylesheet is based on its response headers. Whether @import or link is used does not affect caching.
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-16706
Hi Steve, Please tell the impact on caching of @import & link. If i am going from page to another in the same website and both the pages using same css(which is already downloaded), then will it ...
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-15740
@Murray I've actually experienced the opposite in regards to caching when using @import from inside a linked CSS file. Basically, the browser caches the files that are @imported and disregards fu...
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-4233
Marc: The rules are still applicable. Please refer to Joshua Bixby's article https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-4225
... the @import is used in a style element in the head
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-4224
Hey Steve I was wondering if the rules as you've investigated and tested thoroughly still apply with the latest browsers. The use case I'm referring to is as follows: @import url("a.css"); within...
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-4223
@bilgi: @import has no effect on caching.
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-4001
Thanks for the analysis Steve! One benefit to doing something like... all.css: @import url(home.css); @import url(resets.css); etc ... is in development they are all uncompressed and not combined...
https://www.stevesouders.com/blog/2009/04/09/dont-use-import/#comment-3913