Delaying the IE Showdown

First written on December 06, 2011

2 min. read

I asked the lovely people on Twitter how they dealt with Internet Explorer during their development process in 2011 and what tools they used to do so.

My initial question

Alan – nicest guy in the world & very talented lead developer of Treehouse was the first to opine:

Alan 1 Alan 2 Cory 1

I then asked a follow-up.

Follow-up

Alan 3 Alan 4

Speaking of talented fellas, Nick – a web designer at Envy Labs who worked on Code School and the fabulous Why-flavored redesign of TryRuby.org – answered:

Nick 1 Cory 2

Ryan – a swell guy from NY, designologist, co-founder and web designer at Think Bigr – replied:

Ryan 1

Last but not least, Mark – a terrific web designer at Shopify, said:

Mark 1

To conclude almost every single response presented an approach where styles are written in a standards-compliant environment (today that would be Chrome or Safari, more so than Firefox) then adjusted for IE’s obsolete ways.

Keep this in mind, because a production process tied by IE-compatibility from the get-go is likely to create frustrations and creative limitations very early on. It doesn’t mean one shouldn’t consider IE before the end-stages of a project (as Nick pointed out, the demographic matters a lot) but be weary of efforts towards graceful degradation that may be rendered unnecessary by late design decisions.

Project managers are rarely as cautious with CSS since it doesn’t directly impact business logic (back-end), which means they are more likely to propose modifications to styles later on in a project than they would with controller-logic that could cause functionality breakage.

Managers also often expect websites to look the same in every browser. If you catch any flak when adopting such a process, don’t hesitate to point out that many web professionals adopt a similar technique because it is the most efficient use of their time. Going and back and forth between standard CSS and IE fallbacks after each design iteration is a waste of your time and their money.

If managers or clients somehow insist of having fully IE compatible sites after each iteration, several people have suggested introducing an IE tax to give everyone a clear picture of the true cost of obsolete browsers on development schedules.

I highly recommend Andy Clarke’s thorough breakdown of his Canny Bill redesign across progressively less advanced browsers and his benchmark browser approach.

Finally, one of the best tools to further the cause of graceful degradation (a much more logical moniker than “progressive enhancement”) is Modernizr, spearheaded by Faruk Ateş, Paul Irish and Alex Sexton.