猿问

我想用外置的.css文件 来控制图片的 透明度 但是没有成功为什么呀 在内置的时候就成功了 一调用就不好使

//html 的 

<!DOCTYPE html>

<html>

<head>

<link href="style.css" rel="stylesheet" type="text/css" />


</head>

<body>

<div id = "noLucency">No Lucency</div>

<div id = "lucency">50%</div>

<div id="wrapper" style="font-style:normal">111111111111</div>

</body>

</html>




//外置的  .css 文件


body{

background-color:black;

}

#noLucency{

background-color: white;

width: 200px;

height: 200px;

border:0;

margin:auto;

}

#lucency{

background-color: white; 

width: 200px;

height: 200px;

border:0;

margin:auto;

margin-top:50px;

<!--透明度-->

filter:alpha(opacity=10);  /*IE滤镜,透明度50%*/

-moz-opacity:0.1; /*Firefox私有,透明度50%*/

opacity:0.9;/*其他,透明度50%*/

}

 

        #wrapper {

background-color: white; 

width: 200px;

height: 200px;

border:0;

margin:auto;

margin-top:50px;

<!--透明度-->

filter:alpha(opacity=10);  /*IE滤镜,透明度50%*/

-moz-opacity:0.1; /*Firefox私有,透明度50%*/

opacity:0.1;/*其他,透明度50%*/

        }

/* CSS Document */


慕尼黑9372261
浏览 1578回答 2
2回答

guozhchun

检查一下你的css文件名是不是style.css,再检查一下你的css文件是否和html文件在同一个目录

要成为攻城狮的男人

目测是引入路径问题
随时随地看视频慕课网APP
我要回答