Using CSS ,how to make the background of an element transparent/semi-transparent but have the content (text & images) of the element opaque?
Give opacity as 0.5 in your background color rgba like background-color:rgba(255,0,0,0.5); based on your color in your style property of the element tag.
Eg.
<p style=”background-color: rgba(255,0,0,0.5);”></p>