As this article suggesting

http://www.456bereastreet.com/archive/201002/css_efficiency_tip_use_a_single_stylesheet_file_for_multiple_media/

or different external CSS for different media would be better option?

in terms of maintainability, site performance.

link|improve this question

64% accept rate
multiple css files will always lower your site's performance. Combining them reduces http requests. – Chase Florell Feb 27 '10 at 5:06
@rockinthesixstring - but see nick answer of my another question stackoverflow.com/questions/2083900/… – Jitendra Vyas Feb 27 '10 at 5:08
What technology are you using? Straight up HTML, PHP, ASP.NET, Other? – Chase Florell Feb 27 '10 at 5:10
I use ASP.NET and I build a handler that combines all my CSS on the server site (sending a single CSS file and caching it). I add my CSS to the handler dynamically based on whether or not it's needed by the page request. – Chase Florell Feb 27 '10 at 5:11
feedback

3 Answers

Basically, if you can programmatically add CSS files to your client based on the media (as long as you only send ONE css file in the end), then yes, build multiple CSS files based on the @media.

If you cannot add css programmatically, then I would suggest combining them into a single css file (since you have to send them all to the client regardless), thus reducing the number of http requests by the client.

fewer http requests = faster page loads.

link|improve this answer
but then main css will be heavy for media="screen" users which are main users very few people will take print and mobile user percentage is very low also – Jitendra Vyas Feb 27 '10 at 5:43
feedback

Combined Style Sheet Pros:

  • Optimal/Fast
  • Good reduction in size after compression
  • and yes fewer http requests

Combined Style Sheet Cons:

  • Messed up; all different style sheets in one place
  • Difficult to maintain
  • Less readable
link|improve this answer
Optimal/Fast = false. Sorry but multiple style sheets is not optimal or fast. – Chase Florell Feb 27 '10 at 5:12
@rockinthesixstring: i used the wrong word "multiple" i meant multiple sytle sheets combined into one, see my answer again plz :) – Sarfraz Feb 27 '10 at 5:13
Down vote removed. – Chase Florell Feb 27 '10 at 5:14
@rockinthesixstring: thanks dude... – Sarfraz Feb 27 '10 at 5:15
feedback

You could use media-dependent @import rules like so:

@import url("print.css") print;
@import url("projection.css") projection, tv;

it should work in everything but IE5-7 (as per: http://www.westciv.com/wiki/CSS_Guide:_Media#mediaspecific ) I can't test for IE8 so you might be disappointed there too.

it would result in a very small initial CSS load, then upload just the needed stylesheets based on media.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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