我如何使h1
和img
元素“出现”在它们包含的不透明 div 之上?我的意思是,我如何让它看起来不受其父 div 的不透明性的影响?
小提琴:
<div id="main">
<div id="seethru">
<img ... />
<h1>hi</h1>
</div>
</div>
#main {
background-color: green;
}
#seethru {
width: auto;
height: auto;
opacity: 0.4;
background-color: blue;
}
#seethru img, h1 {
position: relative;
z-index: 9999;
color: white;
}
到目前为止没有任何效果,我无法分离这些内容,它必须在不透明的 div 内