0
我遇到背景屬性問題。它應該是這樣的:具有背景色的透明背景圖像
http://s14.directupload.net/file/d/3425/zbutcmqw_jpg.htm
三角形必須是透明的,我需要設置這個三角形的位置的可能性。 當我使用background:url('images/nav.png')no-repeat#1d1d1d;三角形不再透明。
有沒有解決方法?
我遇到背景屬性問題。它應該是這樣的:具有背景色的透明背景圖像
http://s14.directupload.net/file/d/3425/zbutcmqw_jpg.htm
三角形必須是透明的,我需要設置這個三角形的位置的可能性。 當我使用background:url('images/nav.png')no-repeat#1d1d1d;三角形不再透明。
有沒有解決方法?
您需要爲圖片設置寬度和高度以查看它。
CSS
.class,#id{
background: url('images/nav.png') no-repeat #1d1d1d;
height:100px;
width:100px;
position:absolute; /* need it to set up the z-index and display your image above the nav menu */
z-index:100;
opacity:0.4; /* set up opacity */
filter:alpha(opacity=40); /* ie */
}
_「三角形必須是透明的」 _ - 爲什麼?如果你想展示某種東西而不是另一種(背景)顏色,那麼顯然它不可能是「透明的」,因爲那樣你根本看不到它。請更具體地說明您的實際問題。 – CBroe