我想用css更改標題的背景圖像不透明度。請問你能幫幫我嗎。用css更改背景圖像的不透明度
.intro {
display: table;
width: 100%;
height: auto;
padding: 100px 0;
text-align: center;
color: #fff;
background: url(http://lorempixel.com/1910/500/nature/) no-repeat bottom center scroll;
background-color: #000;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
<header class="intro">
...
</header>
四個upvotes的東西,你可以在一分鐘內谷歌?不符合OP的用戶名。 – Shikkediel
在現代瀏覽器中,您也可以使用CSS3的'filter':https://developer.mozilla.org/en-US/docs/Web/CSS/filter – connexo