在我的网站上是一个居中的cta图像和一个重复的切片图像来填充左右列的流体,这些列呈现为不同的阴影,但是两侧的背景是来自居中图像的photoshop的切片。这是我不知道的css的某些方面吗?图像是背景,另一个是另一个容器:
<div class="cta_main">
<div class="cta"></div>
</div>
使用这样的样式:
.cta {
width:1000px;
height:350px;
margin:0 auto;
background-image:url(../images/images/cta_reg_07.png);
background-repeat:no-repeat;
z-index:100;
}
.cta_main {
width:100%;
height:350px;
margin:0 auto;
background-image:url(../images/images/cta_reg_20.png);
background-repeat:repeat-x;
z-index:1;
}
在photoshop中,图像自然是相同的颜色(因为一个是另一个的切片),即使在Dreamweaver中它看起来应该是这样,只有在firefox和chrome(我没有测试任何其他浏览器)的cta图像看起来更浅一些。感谢。