Skip to content

Instantly share code, notes, and snippets.

@shenmao1989
Created October 18, 2012 04:10
Show Gist options
  • Save shenmao1989/3909817 to your computer and use it in GitHub Desktop.
Save shenmao1989/3909817 to your computer and use it in GitHub Desktop.
用 CSS 实现 Firefox 和 IE 都支持的 Alpha 透明效果
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