Is it possible to have transparent background image using CSS3?
background: url(../img/bg_paperlines.jpg) repeat-x;
Using rgba(255,255,255,0.5) will set transparent background on the DIV, but the image will hide that.
I know I can have transparent <img>, but that’s not what I’m after.
And I have to make sure that the text within the DIV is not set to transaprent.
You could use a PNG with alpha transparency instead of jpg.