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?

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

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.

link|improve this answer
1  
Yup. rgba() colour values aren’t supported in IE 8. – Paul D. Waite Oct 20 '10 at 8:44
The other suggestions are valid, but this has by far the least side effects. – Jon Hadley Sep 1 '11 at 16:03
1  
To avoid a potential problem, use any size other than 1x1: stackoverflow.com/questions/7764751/… – thirtydot Jan 23 at 16:18
I'd rather prefer using CSS over images – Benoit May 7 at 12:16
...As you want. – MatTheCat May 9 at 21:57
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 )

background: rgba(255, 255, 255, 0.3); /* browsers */
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4cffffff', endColorstr='#4cffffff'); /* IE */
link|improve this answer
this works a treat, except unfortunately it seems to stop working if the element is dynamically hidden and re-shown using jQuery... – jackocnr May 26 '11 at 19:15
This works, but can affect the rendering of custom fonts. – Jon Hadley Sep 1 '11 at 16:03
feedback

the transparent png image will not work in IE 6-, alternatives are:

with CSS:

.transparent {

    /* works for IE 5+. */
    filter:alpha(opacity=30); 

    /* works for IE 8. */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";

    /* works for old school versions of the Mozilla browsers like Netscape Navigator. */
    -moz-opacity:0.3; 

    /* This is for old versions of Safari (1.x) with KHTML rendering engine */
    -khtml-opacity: 0.3; 

    /* This is the "most important" one because it's the current standard in CSS. This will work in most versions of Firefox, Safari, and Opera. */  
    opacity: 0.3; 
}

or just do it with jQuery:

// a crossbrowser solution
$(document).ready(function(){ 
    $(".transparent").css('opacity','.3');
});
link|improve this answer
2  
Background alpha is not the same as opacity (it's not make child element transparent too). – lulhuh Apr 19 at 14:25
feedback

You use css to change the opacity. To cope with IE you'd need something like:

.opaque {
    opacity : 0.3;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
}

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.

link|improve this answer
1  
haha typical case of one browser not acting like the rest, and each version of that browser not acting like other versions of the same browser... only Microsoft could achieve this quite so successfully... – ClarkeyBoy Oct 20 '10 at 8:26
@ClarkeyBoy: “typical case of... each version of that browser not acting like other versions of the same browser” Well, if every version of a browser acted the same, there wouldn’t be a point in having different versions, would there? – Paul D. Waite Oct 20 '10 at 8:48
2  
@Paul D. Waite: There are many, many features that browsers offer besides how they render content. Deviating from the spec isn't (or shouldn't be) a feature. – Bobby Jack Oct 20 '10 at 9:15
@Paul D. Waite: Ok I see your point, but what I mean is that different versions of IE act so different that I find myself having to create a different stylesheet for each version... I have different stylesheets for IE6, 7 and 8... yet I only have one stylesheet for all of FF/Chrome/Opera/Safari. @Bobby Jack: Seconded... – ClarkeyBoy Oct 20 '10 at 9:27
@Bobby: Sure, but IE 8 doesn’t deviate from the standards more than IE 7 or IE 6, surely? – Paul D. Waite Oct 20 '10 at 9:50
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.