我正在尝试在应该显示在引导容器后面的 div 中显示图像。
引导容器应该有页面的主要内容(比如一篇文章),我要显示的图像应该显示在容器后面,作为文章的插图。
我尝试在 CSS 中更改 z-index 但它没有做任何事情。这是我尝试的 JSfiddle。容器有黄色背景,应该完全显示在后面的默认图像之上。但事实并非如此。
<div style="z-index:-2000 !important;height:100px;">
<!-- This image does not appear behind the yellow container -->
<img src="back-image.png" width="100%" style="z-index:-2000;display:block" />
</div>
<main class="container" style="background-color:yellow;z-index:10000;">
<!-- This is the yellow container -->
Lorem ipsum...
</main>
感谢帮助。