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

CSS样式表
web标准布局实例教程,用定位轻松解决CSS复杂布局
css静态滤镜
CSS 实用实例(推荐)
给超级链接增加其他样式
给图片加阴影效果的CSS
CSS反转字符加密邮箱地址
firefox样式表定义不支持cursor:hand
解决input对齐问题vertical-alige
表格隔行换色 css expression
HTML标记
CSS圆角区块容器生成器
容器高度100%的绝对定位布局
保存几个不错的css特效字
CSS滤镜示范(filter)附源代码(静态滤镜)
CSS实现表格的背景两色渐变
梦幻式下拉菜单
闭合浮动元素超级简单的方法
文字应用css滤镜集锦
巧用CSS滤镜做图案文字
_blank开新窗口不符合标准?

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 86 ::
收藏到网摘: 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/
 这个我就不想翻译了,很简单,我也只是为了做个记录。哈~~~