Last active
August 29, 2015 14:09
-
-
Save gil00pita/390aa02a7e8bcc8ed3c7 to your computer and use it in GitHub Desktop.
Cross-Browser Transparency
From http://www.hongkiat.com/blog/css-snippets-for-designers/
This file contains 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