The @import rule is used to include CSS files within other CSS files, for example:
@import url(more.css);
@import url(andmore.css);
a {
color: black;
}
This code includes two more style sheets at the beginning of a style sheet. When the browser parses this code, it
stops at each @import and starts to download the specified file. The browser doesn't continue
downloading other style sheets until this one has finished, eliminating any possible parallel downloads of CSS.
@import url(more.css); @import url(andmore.css);
There are two alternatives to using @import:
<link> tags to include the style sheets you want. These will still be downloaded
in parallel.