Skip to content

Instantly share code, notes, and snippets.

@rnmp
Created August 2, 2011 01:12
Show Gist options
  • Save rnmp/1119387 to your computer and use it in GitHub Desktop.
Save rnmp/1119387 to your computer and use it in GitHub Desktop.
Haml fallback for IE.
/[if IE]
:javascript
document.body.className += ' ie';
/[if IE 6]
:javascript
document.body.className += ' ie6';
/[if IE 7]
:javascript
document.body.className += ' ie7';
/[if IE 8]
:javascript
document.body.className += ' ie8';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment