I want to have a background color with opacity in some text, however I want the opacity to be only on the background color. In my example, the opacity applies to both, color and back. How can I keep the opacity only to the background color?
<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; }