Skip to content

Instantly share code, notes, and snippets.

@iamtyce
Created January 31, 2014 03:31
Show Gist options
  • Select an option

  • Save iamtyce/8726203 to your computer and use it in GitHub Desktop.

Select an option

Save iamtyce/8726203 to your computer and use it in GitHub Desktop.

Revisions

  1. iamtyce created this gist Jan 31, 2014.
    10 changes: 10 additions & 0 deletions rotate-ie.scss
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    // Rotate (IE)
    // Usage: @include rotate-ie(1)
    // 1 = 90 degrees
    // 2 = 180 degrees
    // 3 = 270 degrees
    // 4 = 360 degrees

    @mixin rotate-ie($value: 0) {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$value});
    }