Home > Article > Web Front-end > Can You Include One CSS File Within Another?
Cascading Style Sheet File Inclusion
Can one CSS file be included within another? The answer is undoubtedly yes. The @import rule enables the inclusion of an external CSS file within your current one. The syntax for @import is as follows:
@import url("base.css");
Key Points to Note:
The above is the detailed content of Can You Include One CSS File Within Another?. For more information, please follow other related articles on the PHP Chinese website!