I have this img
:
<img src="img1.png" alt="" />
and this CSS:
img{
background-color:green;
opacity:0.4;
padding:5px;
}
you can see here that img
's background-color
also faded. How can I give opacity
only to img
and not to its background
?