我有透明的div裏面的圖像,這個圖像的問題,div需要透明但沒有圖像,當在div中使用不透明度圖像也改變爲這種不透明度,這就是問題Css的不透明度和圖像
#cp_advise
{
position:absolute;
width:100%;
height:99%;
left:50%;
margin-left:-50%;
background-color:#111;
z-index:999;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=60);
-moz-opacity:0.6;
-khtml-opacity: 0.6;
opacity: 0.6;
text-align:center;
}
<div id="cp_advise">
<img src='services.png'>
</div>
我嘗試使用的z-index在圖像上,但繼續問題
Thank's,祺!
看到這個http://jsfiddle.net/aPRp6/給RGBA背景顏色 –