If your CSS files use @import, then combining them into one file can change the imported URLs.
If it @importhas a relative URL, it is resolved with respect to the URL containing the CSS, so you may inadvertently violate @imports.
http://www.w3.org/TR/css3-values/
To create modular style sheets that are independent of the absolute location of the resource, authors must use relative URIs. Relative URIs (as defined in [URIs]) are allowed for full URIs using the base URI. RFC 3986, section 3, defines the regulatory algorithm for this process. For CSS style sheets, the base URI is the style sheet, not the source document.
source
share