How to merge .CSS files with Sass (or other tool)? [duplicate]
问题 This question already has answers here : Import regular CSS file in SCSS file? (13 answers) Closed 4 years ago . I can use Sass to compile multiple .SCSS or .SASS input files into a single .CSS output file using @import as described here. If I use @import to include normal .CSS files, they are not merged. The output .CSS file still contains the @import directives. That makes sense. But is there a way I can override this behavior, perhaps a command-line switch to the Sass compiler? In other