Skip to content

Instantly share code, notes, and snippets.

@tallykatt
Created July 25, 2016 01:56
Show Gist options
  • Save tallykatt/38d132be6a28419ad66fb8bf57f6fe56 to your computer and use it in GitHub Desktop.
Save tallykatt/38d132be6a28419ad66fb8bf57f6fe56 to your computer and use it in GitHub Desktop.
opacity hack
.transparent_class
{
/* IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
/* IE 5-7 */
filter: alpha(opacity=50);
/* Netscape */
-moz-opacity: 0.5;
/* Safari 1.x */
-khtml-opacity: 0.5;
/* Normal */
opacity: 0.5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment