我的文字后面有一个白色背景。我已经使用 CSS 重新定位,如所述。我希望背景的不透明度为 0.3,但它会影响前景,即使在 html 中它处于不同的分界线中。我是 css 方面的新手,期待有更多专业知识的人的回应。
部分html是:
...
<p><span>Fri</span><span>When Announced</span></p>
<p><span>Sat</span><span>Open</span></p>
</div>
<div class=...
<img src="img/cross.png" alt="Cross" width="340" height="465"/>
</div>
<div id="bkgrnd"></div>
<div id="clear"></div>
</section>
...
CSS是:
#bkgrnd{
background-color:#fff;
border:1px solid #000;
box-shadow:#332315 .3em .4em .2em;
opacity: 0.3;
width:750px;
height:526px;
margin-left:89px;
margin-top:-55px;
z-index:-2;
}