回到基礎,我有一種情況,我有一個圖像需要出現在它下面的元素的背景。不過,我不希望圖像出現在該元素,只有元素(和背景屬性)的內容的頂部本身:z-index圖像在背景元素
http://jsfiddle.net/chricholson/4twr5/1/
HTML:
<img src="https://www.google.com/images/srpr/logo3w.png" />
<div>
<a href="#">Hello World</a>
</div>
CSS:
img { position: absolute; z-index: 20; }
div { position: relative; top: 45px; z-index: 10; padding: 30px; background: red; }
a { position: relative; z-index: 30; padding: 10px; background: yellow; display: block; }
預期行爲將是圖象出現過的DIV背景【檢查】頂部,但隨後出現在黃色鏈接後面,而不是。
所以你想讓圖像在hello world元素的背景中? – insomiac
如果你想在背景中的圖像?其固定在這裏:http://jsfiddle.net/4twr5/2/ – insomiac
想要圖片上面的hello世界或以下? –