dreamweaver8里用css的时候源代码如下
<html>
  <head>
  <title>alpha</title>
  <style>
//*定义CSS样式*//
   <!--
  div{position:absolute; left:50;top:70; width:150; }

   //*定义DIV区域内的样式(位置为绝对定位,left、top、width的坐标)*//
     img{position:absolute;top:20;left:40;
  filter:alpha(opacity=80)}

   //*定义图片的样式,绝对定位,滤镜属性是透明度为80*//
   -->
  </style>
  </head>
  <body>
  <div>
  <p style=“font-size:48;font-weight:bold;color:red;”>
  Beautiful </p>
//*定义字体属性,前景色为红色*//
   </div>
  <p><img src=“ss01076.jpg”> </p>

   //*导入一张图片*//
   </body>
  </html>
为什么img属性里没有filter属性???
求助高手