I have this code
body {
background-color: #808080;
background-image: url('/Content/img/emboss.png');
background-repeat: no-repeat;
background-position: center 250px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 10pt;
opacity: 0.8;
}
img {
opacity: 1;
}
However it doesn't work. The entire site, every element has an opacity of 0.8 which is what I want and it looks perfect. However when rendering an image I don't want any transparency.
How would I go about doing this in my css