Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread David Laakso
On Wed, May 22, 2013 at 2:37 PM, Micky Hulse mickyhulse.li...@gmail.com wrote: Howdy, I'm in a situation where I would like to use @media all { ... } and @media screen { ... } around blocks of CSS in a large collection of style sheets. Test page using @media all { ... }:

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread David Hucklesby
On 5/22/13 11:37 AM, Micky Hulse wrote: Howdy, I'm in a situation where I would like to use @media all { ... } and @media screen { ... } around blocks of CSS in a large collection of style sheets. Test page using @media all { ... }: http://jsbin.com/alugiv/1 Test page using @media screen {

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Tom Livingston
On Wed, May 22, 2013 at 2:37 PM, Micky Hulse mickyhulse.li...@gmail.com wrote: Howdy, I'm in a situation where I would like to use @media all { ... } and @media screen { ... } around blocks of CSS in a large collection of style sheets. Test page using @media all { ... }:

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Micky Hulse
Thanks for the replies everyone, as always, I really appreciate your help! Sorry in advance for the following rambling e-mail. For those of you that actually make it to the end, I hope I made it worth your time. :) On Wed, May 22, 2013 at 1:07 PM, David Laakso laakso.davi...@gmail.com wrote: IE

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Tom Livingston
@media { ... } Just thinking out loud, but is the above, without any attributes (?) like screen or all, valid? -- Tom Livingston | Senior Front-End Developer | Media Logic | ph: 518.456.3015x231 | fx: 518.456.4279 | mlinc.com

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Micky Hulse
On Wed, May 22, 2013 at 3:58 PM, Tom Livingston tom...@gmail.com wrote: Just thinking out loud, but is the above, without any attributes (?) like screen or all, valid? Good question. Based on this page: http://www.w3.org/TR/css3-mediaqueries/ [[ If the media query list is empty (i.e. the

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Micky Hulse
On Wed, May 22, 2013 at 4:05 PM, Micky Hulse mickyhulse.li...@gmail.com wrote: IE8 will load the styles within the first ... the ladder is a no go. Doi! That should be latter not ladder. Me = stupid. :D Btw, Tom, you might find this repo/thread interesting:

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread David Hucklesby
On 5/22/13 3:51 PM, Micky Hulse wrote: WITH ALL THAT SAID ... I think it's important to note that, based on my tests, IE8 does not load any styles within a media query block when the given media query is: @media { ... } Demo page: http://jsbin.com/alugiv/5 ... but, from what I

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Micky Hulse
On Wed, May 22, 2013 at 4:12 PM, Micky Hulse mickyhulse.li...@gmail.com wrote: Btw, Tom, you might find this repo/thread interesting: https://github.com/himedlooff/media-query-to-type/issues/1 ... as you've said before that you're working with SASS. To clarify, the above issue is in reference

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Philippe Wittenbergh
Le 23 mai 2013 à 05:18, David Hucklesby huckle...@gmail.com a écrit : IE 8 does not process media queries, but does process the at-rules that you have in your examples. Your media queries are commented out. Le 23 mai 2013 à 07:51, Micky Hulse mickyhulse.li...@gmail.com a écrit : To

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Micky Hulse
On Wed, May 22, 2013 at 4:18 PM, David Hucklesby huckle...@gmail.com wrote: But why would you do that? (Use @media on its own, that is.) Another good question! :D I left out a critical piece of info: https://github.com/himedlooff/media-query-to-type Long story short, that's a LESS

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Micky Hulse
On Wed, May 22, 2013 at 4:47 PM, Philippe Wittenbergh e...@l-c-n.com wrote: Contrary to what has been said, IE 7 8 (and 6 I think, but it has been a while since I checked thoroughly) really support basic media queries of the type Ah, so I was wrong about that HTMLDog article ... As you say

Re: [css-d] @media all {} @media screen {}: Both ignored (or followed) by IE6-8

2013-05-22 Thread Mike O'Toole
In Yahoo Groups the main page (5 message preview) will display the CSS within in body style/style tags unless it is commented out. Mike On 05/22/2013 04:18 PM, David Hucklesby wrote: P.S. You surround your CSS with HTML comments. That was only needed for the very first browsers. I don't