Created
September 2, 2015 14:45
-
-
Save vm137/7f2ddd23a1e789f76fb1 to your computer and use it in GitHub Desktop.
Cross-Browser Transparency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.transparent { | |
filter: alpha(opacity=50); /* internet explorer */ | |
-khtml-opacity: 0.5; /* khtml, old safari */ | |
-moz-opacity: 0.5; /* mozilla, netscape */ | |
opacity: 0.5; /* fx, safari, opera */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment