我希望在某些文本中具有不透明度的背景颜色,但是我希望不透明度仅在背景颜色上。在我的示例中,不透明度适用于颜色和背面。我怎样才能保持不透明度只对背景颜色?
<div class="col left">
<p class="last"><span class="back" >here goes some text</span></p>
</div>
p.last {
color: #000000;
font-family: helvetica,arial,sans-serif;
font-size: 10px;
font-weight: normal;
line-height: 17px;
margin-bottom: 17px;
}
.back { padding:5px;background-color:#893409;opacity:0.3; }