Skip to content

Instantly share code, notes, and snippets.

@kevrcress
Created May 2, 2014 22:54
Show Gist options
  • Save kevrcress/11488162 to your computer and use it in GitHub Desktop.
Save kevrcress/11488162 to your computer and use it in GitHub Desktop.
HTML/CSS
/* Transparency for all browsers */
.transparent {
zoom: 1; /* gives the object layout */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
-webkit-filter: alpha(opacity=85);
-moz-filter: alpha(opacity=85);
-o-filter: alpha(opacity=85);
filter: alpha(opacity=85);
-moz-opacity: 0.85;
-khtml-opacity: 0.85;
-ms-opacity: 0.85;
opacity: 0.85;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment