- From: Tab Atkins Jr. <jackalmage@gmail.com>
- Date: Tue, 3 Jan 2012 16:15:12 -0800
- To: Jeffrey Way <jeffrey@envato.com>
- Cc: "Nicholas C. Zakas" <standards@nczconsulting.com>, www-style@w3.org
On Tue, Jan 3, 2012 at 4:10 PM, Jeffrey Way <jeffrey@envato.com> wrote: > For simple projects, there's a lot to be said for the readability of > sticking with class-based detection, and doing: > > .someJSDependentTickerThingy { ... } > .no-js .someJSDependentTickerThingy { display: none; } > > as opposed to either declaring multiple media query sections, or abstracting > all of it to the bottom...which can sometimes be confusing. But, for heavier > applications, this would be a huge help. +1. I don't think it's a big deal to have something like: .someJSDependentTickerThingy { ... } @media (no-script) { .someJSDependentTickerThingy { display: none; } } ~TJ
Received on Wednesday, 4 January 2012 00:44:15 UTC