I have a background image for my webpage and I have this
HTML:
<body>
<div class="front">
<p>Hello World</p>
</div>
</body>
CSS:
.front{
background-color:silver;
height:200px;
width:200px;
}
The width & height of div is 200px,200px.I want the area covered by the div element to be translucent ie. showing the blur background, but the text that div contains should be clear as well. How do I do that?