Re: Proposal: @-rule for containing exclusive @media rules

>
> @switch import {
>        "desktop.css" (min-width: 1000px);
>        "phone.css" (min-width: 480px);
>        "small-phone.css" all;
>    }


Doesn't this already work with current specs and less fuss?

 @import "desktop.css" screen (min-width: 1000px);
 @import "phone.css" screen (min-width: 480px);
 @import "small-phone.css";

Received on Monday, 22 October 2012 08:24:52 UTC