I have a problem with my background image and text. I only want to apply the opacity to background image but mine, the text was affected.
HTML
<div class="content">
<div class="box">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
</div>
CSS
.content{
background: url(../img/103_n.jpg) left top no-repeat, url(../img/103_n.jpg) right bottom no-repeat;
opacity: 0.5;
}
.content .box p{
opacity: 1;
}