Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ryanburgess/8212543 to your computer and use it in GitHub Desktop.

Select an option

Save ryanburgess/8212543 to your computer and use it in GitHub Desktop.
SASS Mixin for IE 7 Fix for using :before or :after pseudo elements
// -----------------------------------------
// IE 7 Fix for using :before or :after pseudo elements
// -------------------------------------------
// example: @include pseudo-fix(before)
// example: @include pseudo-fix(after)
@mixin pseudo-fix($pseudo){
*zoom: expression(
this.runtimeStyle.zoom="1",
this.appendChild( document.createElement("small") ).className=$pseudo
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment