PNG圖像是側邊欄,而黑色部分是CSS背景下,PNG的alpha似乎覆蓋黑盒子。PNG圖像的透明度重疊的CSS背景屬性
當我改變圖像的不透明度,你可以看到箱子繼續通過整個圖像,但仍然無效,我反覆檢查側邊欄的透明度,但它的設置正確。
它這樣做是在谷歌瀏覽器,以及Firefox瀏覽器。
相關CSS:
.sidebar{
background: url('side1.png') lightgray 10% 50%;
background-repeat: no-repeat;
background-size: 100%;
height: 600px;
width: 173px;
z-index:1;
float:left;
position:relative;
opacity:0.5;
}
.header{
background: black;
background-position: top right;
float:right;
width:100%;
height: 200px;
z-index:0;
position:absolute;
}
相關HTML:
<div class="sidebar">
<img src="images/pic1.png" class="icon">
</div>
<div class="header"></div>
我的傾向是,它有實際上是如何創建的PNG做。你是如何創建這個PNG的?在Photoshop中?如果是這樣,你是否保存爲PNG-8或PNG-24? – chipcullen 2012-02-08 21:53:51
問題是? – 2012-02-08 21:54:04
**什麼是實際圖片?**您能否將我們鏈接到實際文件pic1.png?沒有它,我們所能做的只是猜測。 – animuson 2012-02-08 22:03:29