直接上代码,兼容IE,firefox,chrome,Safari,Opera等主流浏览器的半透明CSS代码:
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
几个属性的意思是:
opacity: 0.5; CSS的标准,支持chrome,firefox, Safari和 Opera,取值范围0-1。
filter:alpha(opacity=50); 这个是为IE设的,取值范围0-100。
-moz-opacity:0.5; 支持老版本的Mozilla,取值范围0-1。
-khtml-opacity: 0.5; 支持老版本的Safari浏览器,取值范围0-1。
以下是测试代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>利用CSS实现半透明效果兼容IE与火狐与chrome等浏览器</title>
</head>
<body style="background:#09f;">
<div class="tm_fontzhi">通过CSS实现半透明,兼容IE,firefox,chrome等主流浏览器</div>
<div class="tm_fontbg"></div>
<style>
.tm_fontbg {
position:absolute;top:50px;right:50px;bottom:50px;left:50px;background:#000;z-index:99; /* 这段代码是为了实现div固定位置的不用在意这段 */
filter:alpha(opacity=50); /* 这个是为IE设的,取值范围0-100。 */
opacity: 0.5; /* CSS的标准,支持chrome,firefox, Safari和 Opera,取值范围0-1。 */
-moz-opacity:0.5; /* 支持老版本的Mozilla,取值范围0-1。 */
-khtml-opacity: 0.5; /* 支持老版本的Safari浏览器,取值范围0-1。 */
}
.tm_fontzhi {position:absolute;top:90px;right:90px;bottom:90px;left:90px;padding:0 20px;color:#fff;z-index:100;}
</style>
</body>
</html>