You can try using a translucent PNG file for the background image, or you can use an RGBa (a for alpha) color for the background color.
Try this code for 50% faded black background:
<div style="background-color:rgba(0, 0, 0, 0.5);">
<div>
Text added.
</div>
</div>
Note: Child class inherits opacity.