RE: [mediaqueries] User-defined Media Queries?

> Do not abuse media types, use media features instead.

Media features L3 can already be used without specified value, like the "color" feature. MQ L4 also add features like "script", "pointer" and "hover" which can be used likewise. It's even specified what it means: 

    @media(x) {} 
    == @media not (x:0) 
          and not (x:0px)
          ... ... .......
          and not (x:none) {}

That doesn't mean we shouldn't accept real pair/value to be used for custom MQ but simple flags are already part of the existing specs, it's not something created for this specific use at all. 		 	   		  

Received on Saturday, 1 June 2013 08:46:27 UTC