//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 */
- 2 回答
- 0 关注
- 1577 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消