i have a website and i have multiple css style sheet for print, tv, screen, handheld etc...

i want to know which one of these method is better to use (performance, usability, etc...)

<link href="all.css" media="all" type="text/css" />
<link href="handheld.css" media="handheld" type="text/css" />
<link href="tv_print.css" media="tv, print" type="text/css" />

or

<style type="text/css">
    @import url("all.css") all;
    @import url("handheld.css") handheld;
    @import url("tv_print.css") tv, print;
</style>

thank you

link|improve this question

75% accept rate
feedback

1 Answer

up vote 17 down vote accepted

The first method (link) is the best.

The main reason is that there is a bug in IE 6,7 and 8 (not sure about 9 or higher) means that when you use @import in conjunction with link the files are loading in series rather than in parallel. This can slow things down a lot when using more than one style sheet.

Just using @import downloads in series, but the order isn't guaranteed, meaning that if there is a reset for instance, that may or may not be applied first.

This article has a good summary: http://www.stevesouders.com/blog/2009/04/09/dont-use-import/

link|improve this answer
1  
that's really interesting I did not know that! – Michael Durrant Dec 17 '11 at 13:27
very interesting information thank you very much – Giraldo Dec 17 '11 at 13:31
1  
The first method is easier to maintain as well. – Scott Simpson Dec 17 '11 at 14:14
1  
IE again o.O , is that thing really called browser ! – Al-Mothafar Dec 17 '11 at 15:51
feedback

Your Answer

 
or
required, but never shown

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