我被困在如何將背景圖像移出它的容器。jQuery背景圖像位置
我有一個寬度爲960的容器,居中。然後我在容器中有一個橫幅,我需要橫幅後面另一圖層上的圖像,但留有餘量:-100像素,但使用CSS時不起作用,因爲背景圖像不能移出容器。我怎麼能用jQuery來做到這一點,或者是否有人知道在CSS中使用語義正確的解決方法?
在此先感謝。
編輯: http://i49.tinypic.com/s5wzmp.png這基本上是我需要它看起來,紅色是背景圖像,需要從橫幅區域後面「峯」,這兩者都在960像素容器內。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style>
body { background: #000;padding: 0; margin: 0; }
.home-spot { width: 950px; height: 400px; background: #fff; margin: 0 auto; }
.image { background: url('image.png') no-repeat; height: 200px; width: 100%; }
.banner { background: #98cb4c; height: 180px; }
</style>
</head>
<body>
<div class="home-spot">
<div class="image">
<div class="banner">
</div>
</div>
</div>
</body>
</html>
我們需要查看代碼。 –
沒有什麼可看的,我只是亂七八糟的色塊atm試圖讓它工作.. – Karl
Ohhhhhh .....我想我終於明白你想要什麼了....位置你的形象(無論是紅色塊)作爲'絕對'與左':-100像素'確保它的父母,包裝,被定位爲至少'相對' – Leeish