RE: [WSG] Combining media stylesheets - best practice

2012-03-01 Thread Greg Gamble
rsday, March 01, 2012 4:54 PM To: wsg@webstandardsgroup.org Subject: Re: [WSG] Combining media stylesheets - best practice I would say minimising http requests is 'best practice.' Henrik <http://www.igenerator.com.au/> GENERATOR Henrik Madsen +61 08 9387 1250 hen

Re: [WSG] Combining media stylesheets - best practice

2012-03-01 Thread Patrick H. Lauke
On 02/03/2012 00:40, Ben Zeller wrote: Hi everyone, On a recent project we've decided to combine our @print media styles at the bottom of our main stylesheet. eg. @media print { /* Print styles */} In our global template, the stylesheet is imported with the media attribute "screen". Using this

Re: [WSG] Combining media stylesheets - best practice

2012-03-01 Thread Georg
For only those two media, I'd use... ...to avoid having to override existing "all" styles in case I wanted to add stylesheets for other media. *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: h

Re: [WSG] Combining media stylesheets - best practice

2012-03-01 Thread Jason Grant
+1 on Henrik's remark. On Fri, Mar 2, 2012 at 12:53 AM, Henrik Madsen wrote: > > I would say minimising http requests is 'best practice.' > > Henrik > > [image: GENERATOR] > > > *Henrik Madsen* > +61 08 9387 1250 > hen...@igenerator.com.au > www.igenerator.com.au >

Re: [WSG] Combining media stylesheets - best practice

2012-03-01 Thread Henrik Madsen
I would say minimising http requests is 'best practice.' Henrik Henrik Madsen +61 08 9387 1250 hen...@igenerator.com.au www.igenerator.com.au On 02/03/2012, at 8:40 AM, Ben Zeller wrote: Hi everyone, On a recent project we've decided to combine our @print media styles at the bottom of o

[WSG] Combining media stylesheets - best practice

2012-03-01 Thread Ben Zeller
Hi everyone, On a recent project we've decided to combine our @print media styles at the bottom of our main stylesheet. eg. @media print { /* Print styles */} In our global template, the stylesheet is imported with the media attribute "screen". Using this attribute, the print styles are ignored.