import css to another css code example
Example 1: how to include one css file in another
@import url("base.css");
Example 2: import css in another css file
@import "navigation.css"; /* Via string */
or
@import url("navigation.css"); /* Via url */