Programming Tips - css: How to I import the contents of one CSS file into another?

Date: 2008oct30 Language: css Platform: web Q. css: How to I import the contents of one CSS file into another? A. Do:
@import url("/styles/headings.css");
before anything else in your .css file. There is also an include-source directive but it doesn't help for this.