Created
October 18, 2012 04:10
-
-
Save shenmao1989/3909817 to your computer and use it in GitHub Desktop.
用 CSS 实现 Firefox 和 IE 都支持的 Alpha 透明效果
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
filter:alpha(opacity=50); /* IE */ | |
-moz-opacity:0.5; /* Moz + FF */ | |
opacity: 0.5; /* 支持CSS3的浏览器(FF 1.5也支持)*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment