Div+css首页

Firefox中不透明度滤镜Alpha的使用方法

 

  www~phperz~com

以下为引用的内容:
<!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>firefox中appha滤镜的用法-www.phperz.com</title>
<style type="text/css">
}
</style>
</head>
<body>
<div class="test">有滤镜效果
<br />
<br />
</div>
<br />
<div class="test2">无滤镜效果
<br />
<br />
</div>
</body>
</html>
www~phperz~com

 

www.phperz.com

.test{
   background:#000;
   color:white;
   width:200px;
   left:10px;
   top:10px;
   filter: Alpha(opacity=10);
   -moz-opacity:.1;
   opacity:0.1;
}
.test2{
   background:#000;
   color:white;
   width:200px;
   left:10px;
   top:10px;
   filter: Alpha(opacity=10);
 

phperz~com

 

想让firefox支持alpha关键之处在:

phperz.com

 

以下为引用的内容:
 -moz-opacity:.1;
opacity:0.1;

php程序员站

 

这二行css都是滤镜,不同版本的firefox有不同的写法

Div之家