I have a div element with text in it and a background image, which is set via the CSS property background-image. Is it possible to fade in the back
div
background-image
You can give opacity value as
div {opacity: 0.4;}
For IE, you can specify as
IE
div { filter:alpha(opacity=10));}
Lower the value - Higher the transparency.