vote up 1 vote down star

Which method is best for importing multiple stylesheets? I assume, as with most things regarding the web, the answer is 'it depends', but are there downsides of using one or the other?

flag

Are you asking if you should use media="screen" in your <link> or use @media screen inside your style sheet? Or are you debating useing @import vs <link>? – idrumgood Sep 25 at 20:27
Sorry for being so vague... I am debating between using @import vs <link>. I'm not sure why I put "media=". That was stupid. Pascal hit it on the head with his answer. – Chris Schmitz Sep 27 at 15:21

2 Answers

vote up 3 vote down check

I once read this article about performances and <link> vs @import : don’t use @import ; quoting a small portion of it :

use LINK instead of @import if you want stylesheets to download in parallel resulting in a faster page.

It's quite recent (April 2009), so should still be mostly true -- and written by Steve Souders, whose name is quite well-known when it comes to front-end performances.


On a more subjective point, I quite prefer using several <link> from my main HTML file : this way, I am able to see in only a quick glance what css files are called -- either looking at the template file on the server, or looking at the generated HTML source on the client side.

link|flag
vote up 0 vote down

On some (all?) implementations @import is processed at the end of the loading of the page, so you'd have the undesired Flash of Unstyled Content using it.

link works usually better, but if what you wan't is to define a different media, you could use it without problem. Also, its a neat trick to hide CSS from older browsers (<IE5.5).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.