Direct link to the article Understand why CSS has no effect with the Inactive CSS rules indicator in Firefox DevTools

Understand why CSS has no effect with the Inactive CSS rules indicator in Firefox DevTools

Direct Link

It’s useful when DevTools tells you that a declaration is invalid. For example, colr: red; isn’t valid because colr isn’t a valid property. Likewise color: rd; isn’t valid because rd isn’t a valid value. For the most part, a browser’s …

Avatar of Chris Coyier
Shared by Chris Coyier on
Direct link to the article How to stop using console.log() and start using your browser’s debugger

How to stop using console.log() and start using your browser’s debugger

Direct Link

Whenever I see someone really effectively debug JavaScript in the browser, they use the DevTools tooling to do it. Setting breakpoints and hopping over them and such. That, as opposed to sprinkling console.log() (and friends) statements all around your …

Avatar of Chris Coyier
Shared by Chris Coyier on