我遇到了background属性的问题。它应该是这样的:
http://s14.directupload.net/file/d/3425/zbutcmqw_jpg.htm
三角形必须是透明的,我需要设置这个三角形的位置。 当我使用background:url('images / nav.png')no-repeat#1d1d1d;三角形不再透明了。
有没有解决方案?
答案 0 :(得分:0)
您需要为图片设置宽度和高度以进行查看。
<强> 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 */
}