Skip to content

Instantly share code, notes, and snippets.

@shrwnsan
Created January 9, 2013 17:16
Show Gist options
  • Save shrwnsan/4494941 to your computer and use it in GitHub Desktop.
Save shrwnsan/4494941 to your computer and use it in GitHub Desktop.
IE8 tweaks/workarounds
// lack of support for CSS :first-child and :last-child
if ($.browser.msie && parseInt($.browser.version, 10) === 8) {
$('ul li:first').addClass('first');
$('ul li:last').addClass('last');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment