Re: [mediaqueries] User-defined Media Queries?

I agree. Do not abuse media types, use media features instead.


On Fri, May 31, 2013 at 8:53 PM, Chris Eppstein <chris@eppsteins.net> wrote:

> I don't think we need to move away from the property/value pair syntax
> that is already in use:
>
> @media (name: huge) or (name: medium) { ... }
>
> -Chris
>
>
> On Fri, May 31, 2013 at 11:21 AM, Tab Atkins Jr. <jackalmage@gmail.com>wrote:
>
>> On Fri, May 31, 2013 at 11:17 AM, Yehuda Katz <wycats@gmail.com> wrote:
>> > What about just:
>> >
>> >> <html>
>> >>   <script>
>> >>     if (window.outerWidth >= 600)
>> >>       document.css.media.huge = true;
>> >>     }
>> >>   </script>
>> >>   <style>
>> >>     @media ("huge") {
>> >
>> >>       .facet_sidebar {
>> >>         display: none;
>> >>       }
>> >>     }
>> >>   </style>
>> >> </html>
>>
>> Hmm, using bare strings as the media query name is interesting.  It's
>> definitely unambiguous and non-colliding, and means that authors can
>> give whatever they want as the name without having to worry about
>> escaping.  Plus, nice and short.  +1.
>>
>> ~TJ
>>
>>
>


-- 
Kenneth Rohde Christiansen
Senior Engineer, WebKit, Qt, EFL
Phone  +45 4294 9458 / E-mail kenneth at webkit.org

﹆﹆﹆

Received on Saturday, 1 June 2013 08:25:21 UTC