I am using this CSS for background opacity of a <div>:
background: rgba(255, 255, 255, 0.3);
It’s working fine in Firefox, but not in IE 8. How do I make it work?
|
I am using this CSS for background opacity of a
It’s working fine in Firefox, but not in IE 8. How do I make it work?
| ||||
|
feedback
|
|
Create any other size than 1x1 png pixel (thanks thirtydot) whith same opacity applied as background. EDIT : to fall back with IE6 you can specify bkgd chunk for the png, this is a color which will replace transparency if not supported. You can fix it with gimp eg. | |||||||||||||||
feedback
|
|
to simulate RGBA and HSLA background in IE, you can use a gradient filter, with the same start and end color ( alpha channel is the first pair in the value of HEX )
| |||||
feedback
|
|
the transparent png image will not work in IE 6-, alternatives are: with CSS:
or just do it with jQuery:
| |||||
feedback
|
|
You use css to change the opacity. To cope with IE you'd need something like:
But the only problem with this is that it means anything inside the container will also be 0.3 opacity. Thus you'll have to change your HTML to have another container, not inside the transparent one, that holds your content. Otherwise the png technique, would work. Except you'd need a fix for IE6, which in itself could cause problems. | |||||||||||||||
feedback
|