I have a CSS file that I'd like to symlink to an external CSS file.

The external CSS file is only available as a URL - it's not on my filesystem.

Is this possible?

I'm running OSX.

link|improve this question

40% accept rate
1  
how often is the external css file updated? Could you not just download it - at intervals if it will be updated? – Colin Pickard Mar 3 '11 at 17:12
@ColinPickard It's more suitable as a comment, converted it to a comment. – Sathya Mar 3 '11 at 17:28
@Sathya OK - thank you. – Colin Pickard Mar 3 '11 at 17:49
feedback

closed as off topic by paradroid, studiohack Mar 4 '11 at 15:39

Questions on Super User are expected to generally relate to computer software or computer hardware, within the scope defined in the faq.

1 Answer

If I understand your question correctly, you can include it using this in the local CSS file:

@import url(http://www.foo.com/style.css);
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.