0
我已經設置了一個背景,我期望它是其他一些div背後的屏幕寬度。在Internet Explorer中裁剪的背景圖像
我已經設置的z索引爲-1所以會出現後面的div 2在其然而鉻工作正常,IE似乎之前切斷背景關閉在容器的寬度和之後(980px)
我的代碼:
.container {
width: 980px;
background: transparent;
}
.container-footer {
position: relative;
background: url(images/footer-bg.png) no-repeat center top;
width: 100%;
z-index: -1;
margin-top: -100px;
height: 200px;
}
<div class="container"> .. content .. </div>
<div class="container container-footer"></div>
<div class="container"> .. content .. </div>
下面是在Chrome中的作用:
這是在Internet Explorer 8的效果:
完整的代碼可以在這裏找到:http://www.signatureblindsbrisbane.com.au/(向下探底(簽署合作區)
它在鉻中工作正常 - 我只需要了解爲什麼它不能在IE –