当前位置: 首页 > 图文教程 > 网页制作 > CSS样式表 > css 透明度的设置兼容所有浏览器

CSS样式表
介绍IE8的CSS hack
CSS教程:解析CSS列表样式属性list-style
CSS教程:CSS页面布局的技巧
对付CSS兼容问题的十个超级技巧
CSS3教程:box-sizing属性
CSS教程:29个特殊的CSS导航技术
CSS教程:CSS控制浏览器滚动条的源代码
DIV+CSS制作网页之如何设置z-index
制作网页表单的标签和输入区
网页文件上传表单的制作
网页表单标签水平右对齐更适合中文网站
CSS在各个网页版邮箱中的支持情况
彻底弄清楚haslayout概念
CSS教程:滑动门与选项卡
总结关于网页表单反馈的一些问题
CSS Sprite操作:用CSS处理圆角
网站栅格化设计
减少网站加载时间:CSS Sprites
通过CSS实例实现清除浮动
CSS教程:实例讲解定位Position

CSS样式表 中的 css 透明度的设置兼容所有浏览器


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 142 ::
收藏到网摘: n/a


代码如下:

.transparent_class {filter:alpha(opacity=50);-moz-opacity:0.5;-khtml-opacity: 0.5; opacity: 0.5;}

UPDATE: I wanted to pull this post out of the archives and update it a bit because it there seems to be a good amount of interest in this subject.

Here is what each of those CSS properties is for:

       
  • opacity: 0.5; This is the “most important” one because it is the current standard in CSS. This will work in most versions of Firefox, Safari, and Opera. This would be all you need if all browsers supported current standards. Which, of course, they don’t.
  •    
  • filter:alpha(opacity=50); This one you need for IE.
  •    
  • -moz-opacity:0.5; You need this one to support way old school versions of the Mozilla browsers like Netscape Navigator.
  •    
  • -khtml-opacity: 0.5; This is for way old versions of Safari (1.x) when the rendering engine it was using was still referred to as KTHML, as opposed to the current WebKit.

来源:http://css-tricks.com/css-transparency-settings-for-all-broswers/
 这个我就不想翻译了,很简单,我也只是为了做个记录。哈~~~