我在页面正文上有一个背景,这是一个我想通过第一级 div 显示但不是第二级的图像
<body>
<div style='opacity:0.9;'><p>This is a wrapper that shows some of the background</p>
<div style='background-color:#fff;'><p>This is a child div that I want to be all white</p>
</div>
</div>
</body>
显然,第二级 div 也获得了 0.9 的不透明度,有没有办法覆盖它?