【发布时间】:2014-06-26 21:05:14
【问题描述】:
如何将整个页面不透明度的背景图片设置为0.4?
我试过了
html {
background: url(img01.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
opacity: 0.4;
filter: alpha(opacity=40); /* For IE8 and earlier */
}
但它设置了页面上所有元素的不透明度,我只想要 img01.jpg 的不透明度??
【问题讨论】:
-
你用的是什么浏览器?
-
@user3739658 火狐 30.0
-
img01.jpg 是 html 的背景或 HTML 中使用的图像。
-
这个主题是一样的 - stackoverflow.com/questions/4183948/…