Skip to content

Instantly share code, notes, and snippets.

@jaydiablo
Created March 10, 2015 17:26
Show Gist options
  • Save jaydiablo/f4261c967d48b9cd9a18 to your computer and use it in GitHub Desktop.
Save jaydiablo/f4261c967d48b9cd9a18 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.1.0)
// ----
@mixin img-opacity($trans) {
filter : alpha(opacity=$trans * 100);
-ms-filter : "progid:DXImageTransform.Microsoft.Alpha(Opacity=#{$trans * 100})";
-moz-opacity : $trans;
-khtml-opacity : $trans;
opacity : $trans;
}
img {
@include img-opacity(.5);
}
img {
filter: alpha(opacity=50);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment