Categories
josephscott

CSS Opacity in Internet Explorer (IE)


I’ve been looking into opacity in CSS. All of my initial testing was done in Firefox and worked as expected. Using opacity in CSS is simple enough, accepting values between 1.0 (completely visible) and 0.0 (invisible). As an added bonus it also works in Safari and Opera.

Then I ran into Internet Explorer (IE). IE’s CSS uses filter instead of opacity, and the expected values are different. The filter opacity values range from 100 (completely visible) to 0 (invisible). This turns out to be easy enough to deal with. Here’s an example that sets the opacity to 50%, it works in IE (filter) and others (opacity):

.change_opacity {
  opacity: 0.5;
  filter: alpha(opacity = 50);
}

But simply setting the filter/opacity value in IE isn’t enough. Turns out that IE requires an element to be positioned in order for filter/opacity to work. If your element doesn’t have a position you can work around this by adding ‘zoom: 1‘ to your CSS. There are other hacks to deal with this, zoom was the one I picked and it seems to work well enough.

In JavaScript you can find out if an element in IE has a position component by checking element.currentStyle.hasLayout. If hasLayout is false then the element has no CSS positioning.

If you want to learn more about this issue here is a reading list to get your started:

UPDATE: Fri 1 Sep 2006 @ 12:45pm Michael correctly pointed out that IE doesn’t use a % for opacity, so I’ve removed it.

77 replies on “CSS Opacity in Internet Explorer (IE)”

Thanks man, im developing a webapp for my job and i was going quite crazy about this matter. My Css was fine, and worked in FF (as always) but the application has to be cross-browser and i didn’t know was happening here..

I was working before, on an anchor element, and when I nested the anchor within a list item, it stopped working… even with float and block display.

The zoom property seems to be quite a thing…

Joseph,

I’ve been experimenting with opacity in a js menu over top of an image. As you can see in this webpage, FF works but IE does not. Here’s the line I’m using.

I have eliminated all possibilies except the “position: absolute;” If I remove this, the menu works in both FF/IE but the opacity only works in FF with it.

Any ideas would be greatly helpful.

–Ted

Hi there,

to make it work in IE add width:100%

.change_opacity {
opacity: 0.5;
filter: alpha(opacity = 50);
width: 100%; /* stupid IE */
}

see you

genious!!! the ‘zoom:1;’ worked perfectly to give me transparentcy in ie! BUT, my hit counter and ad, lose there ‘position:absolute’ attributes! is there anything else that can be used instead of the zoom feature to get transparentcy to work in ie? or a way of getting my hitcounter and ad to stay on the right of the page?? email me any decent response, please, ninjaprawn@blueyonder.co.uk , or visit my site, my email is there to http://ninjaprawn.myby.co.uk !!!

Even though you posted this a while ago, just wanted to say; thank you so much for the code! Been wondering why the code wasn’t working and then I read your blog, thank you!

Hi
I’m having a problem with the css in my blog, and I’m wondering if you could help.
I’m using this code to hide the Blogger navbar, but in only works with FF. It isn’t the same with IE or Opera. The goal is that the navbar remains hidden, and become visible when you roll the mouse over it. This is the code:

#navbar-iframe{opacity:0.0;filter:alpha(Opacity=0)}
#navbar-iframe:hover{opacity:1.0;filter:alpha(Opacity=100, FinishedOpacity=100);width:100%}

As you can see, I read your post and added widht to the code, but doing this way it didn’t worked.

I have exactly the same problem as Torreco!

IE recognize the string “#navbar-iframe …” and it is displayed transparent. It’s working fine. But IE seem NOT to recognize the string “#navbar-iframe:hover …” because on hovering the navbar – in IE – it not changes anything, it is still so transparent as in “#navbar-iframe …” defined.

So my only thought is, that the problem lies in the string “#navbar-iframe:hover”. Why does firefox recognize it, and IE does not???

The :hover psuedo-class only works in IE6 for A elements. And if #navbar-iframe is actually an iframe, that might be a different bundle of fun again…

You could make your A element act like a DIV via ‘display:block’.

Thanx for the answer. But it doesn’t seem to work. At first I have added the following lines to my stylessheet:

#navbar-iframe {
display:none;
}

but this destroyed my whole blog-formation.

than I added it to the hover-string:

#navbar-iframe:hover { opacity: 0.8; filter: alpha(opacity=80); display:block; }

my blog-formation was there again, but the hover-effect didn’t stil work in IE.

Thanks for that. Somedays I just wish everyone could decide to interpret css and html the same way you know? Anyone else ever feel that, or is just me? 🙂

Torsten:
display: none; will remove the object entirely from the layout where as
visibility: hidden; just means it’s not visible.

Then to make things visible again, you just go:
document.getElementByID(objectID).style.visibility = “visible”;

Hi every body I really Dont know why get angry about IE, get a javascript framework and all this is going to be disappear also you use the reset css of yahoo for make your app easy of use with css…

get http://www.prototypejs.com and yahoo css reset yui…

@nahum –

Expecting people to use Javascript to fix a CSS issue is a sign that there is a problem (or at the very least, significant difference) with your CSS implementation. While the Yahoo CSS reset is nice, it doesn’t really address this particular issue as far as I can tell.

The intent of the post was to provide a reference on how to make CSS opacity work in Firefox and IE.

@Andreas Wacker –

No problem, that seemed to be the least intrusive way to deal with the issue that I’d found.

Let’s hope that IE doesn’t start scoring any points against the people 🙂

In IE, I found that if you create an element in JS, it does not grab the CSS property of filter (and probably other attributes). This had me stumped as to why IE did NOT have the opacity value I gave it. Example:

—- THIS DOES NOT WORK IN IE —-
[javascript]
var div = document.createElement(‘div’);
div.setAttribute(‘class’, ‘partiallyTransparent’);

var body = document.getElementsByTagName("body").item(0);
body.appendChild(div);
[/javascript]

[CSS]
.partiallyTransparent {
border: solid 1px #999;
background: #FFF;
color: #000;
opacity: .7;
filter:alpha(opacity=70);
width: 100%;
z-index: 1;
}
[/CSS]
——————————-

If I created the div in the HTML (and not dynamically in the JS), then the opacity worked fine. Example:

—- THIS DOES WORK IN IE —-
[HTML]

Hi, this is some text

[/HTML]

[CSS]
.partiallyTransparent {
border: solid 1px #999;
background: #FFF;
color: #000;
opacity: .7;
filter:alpha(opacity=70);
width: 100%;
z-index: 1;
}
[/CSS]
—————————

Of course, in FF 2.x, the dynamically-generated HTML pulls the CSS attributes just fine. Hope that helps someone because it had me stumped for a few minutes. 😉

Philip,

Are you certain the opacity did not get applied in IE when you created the html element dynamically using Javascript because of some different problem with applying class styles in IE?

What I wanted to ask is, I don’t see zoom : 1 in your CSS. Can you confirm if things continue to break in IE even after you put this CSS style and create the html element dynamically using JS?

Fact is, I’m working on something for which I need to absolutely create html elements on the fly and if I can’t change the opacity on them, then I’m screwed.

Thanks much.

@Java2Architect,
The reason Philip’s style didn’t get applied is because a of another wonderful problem with IE. This time its DOM implementation.
It is exactly as Philip says, if you apply the class attribute with the proper DOM method ‘setAttribute’, it will not be applied properly. It seems to apply the class attribute properly but not actually set the CSS at runtime.

The way to get arround this is to use the object property ‘className’.

So for Philip’s example change;
var div = document.createElement(’div’);
div.setAttribute(’class’, ‘partiallyTransparent’);

to,

var div = document.createElement(’div’);
div.className = ‘partiallyTransparent’;

That should do the trick. Completely cross-browser too (its nice to be able to say that every now and again) :).

Ciao

I’m having a strange problem:

I have a table that I’m fading using “filter” and “opacity” so that it works with both IE and FireFox.

There are anchor tags in my table and are positioned relative (necessary for my roll-over labels). However, I’ve found out that if I have any positioning specified for the anchor tags, they do not fade with the rest of the table. If I omit the positioning in my CSS, then it fades fine (though my roll-over labels no longer work correctly).

It seems the IE no longer considers the anchor tags as children of the table? This is very vexing for me because it only happens with anchors; if I specify positions for img tags, they work fine…

div.fileinputs {
position: relative;
}

div.fakefile {
position: absolute;
top: 0px;
left: 0px;
z-index: 1;
}

input.file {
position: relative;
text-align: right;
-moz-opacity:0 ;
filter:alpha(opacity: 0);
opacity: 0;
z-index: 2;
}

not working in Fire fox

Of course it’s not working, for security reasons. But there are work-arounds to this. Google for:
javascript file upload browse button
and you will find how to hide and style the input type=file

But if control style is set to display none, then file1.hasFile vil be nothing, i am not able to track how to save the file into server

In the code below, I can’t seem to find a way to make the inner div opaque. It seems the opacity can be set to a lower value, but not a higher one.

var oOuterDiv = document.createElement( ‘div’ );

oOuterDiv.style.position = ‘absolute’;
oOuterDiv.style.top = ‘0px’;
oOuterDiv.style.left = ‘0px’;
oOuterDiv.style.width = ‘100%’;
oOuterDiv.style.height = ‘100%’;
oOuterDiv.style.backgroundColor = ‘red’;
oOuterDiv.style.opacity = ‘.5’;
oOuterDiv.style.filter = ‘alpha( opacity=50 )’;
oOuterDiv.style.display = ‘block’;

var oInnerDiv = document.createElement( ‘div’ );

oInnerDiv.style.position = ‘absolute’;
oInnerDiv.style.top = ‘200px’;
oInnerDiv.style.width = ‘200px’;
oInnerDiv.style.height = ‘200px’;
oInnerDiv.style.border = ‘5px solid black’;
oInnerDiv.style.backgroundColor = ‘white’;
oInnerDiv.style.opacity = ‘1’;
oInnerDiv.style.filter = ‘alpha( opacity=100 )’;
oInnerDiv.style.display = ‘block’;

oOuterDiv.appendChild( oInnerDiv );

var oBody = document.getElementsByTagName( ‘body’ )[0];
oBody.appendChild( oOuterDiv );

You can’t do that. Let me explain this in a few ways – they all mean the same thing, I’m just making sure everyone gets the point:
1) If you have an element INNER inside an element OUTER, you can’t make INNER appear more opaque than OUTER because the opacity you give OUTER will be the opacity used to paint that element and all it’s children.

2) Here are some examples:
– If you give OUTER 25% opacity and INNER 100%, then on the screen INNER will appear to have 25%.
– If you give OUTER 25% opacity and INNER 50%, then on screen INNER will appear to have 12.5%.

3) The opacity is relative to the parent, therefore the final result will be the product of all opacity values starting with the given element and continuing with all of it’s parents (25% * 50% = 12.5% because the “%” sign simply means ” / 100″).

Note: You can NOT have opacity > 100% because that simply doesn’t make sense.

Hope that’s clear…

Hi Tom, thanks for responding. I was able to make this work as expected by adding the inner div to the body as opposed to adding it to the outer div.

In the example I gave above, both FF and IE have the same result. I would submit this is a bug, or at the very least, inconsistent design. There are some style elements that certainly make sense in relation to a parent. Opacity, color, font style, etc… are not among them. These items should vary independent of any parent unless inherit is specified. Said another way, I don’t see how the opacity of a block element with z-index 0, should affect the opacity of an element with a higher z-index positioned above it. These should not depend on each other and should render as such.

Best Regards,
Andrew

Opacity makes sense, because you don’t “stick” the inner div “on” the outer div. By your logic, you couldn’t make the contents of a div transparent unless you reached EACH AND EVERY element inside it and all their children and gave them the same opacity. Opacity is relative because a div is a container and if you make it transparent, it’s pretty clear you want the contents to have the same transparency, otherwise it wouldn’t make any sense, except for making transparent rectangles.

Hello, Stéphane,

I’m not sure, but see line 1171 in wz_tooltip.js, change it to if opa < 100 … … Let me know if that worked.

Regards,
Tom

I have a div defined in my JSP as follows:

css for both is:

#order_left_assaysList{
overflow: hidden;
width:100%;
}

.overlay_div_css{
background:#dedede no-repeat center center;
height: 303px;
width: 450px;
zoom: 1;
position: absolute;
z-index:999;
}

javascript to set the overlay is:

var setOverlayProps = function(rye) {
var elm=dijit.byId(rye);
var dojoMargins = dojo.marginBox(elm.domNode);
_height = dojoMargins.h;
_top = dojoMargins.t;
overlay = document.getElementById(“overlay_div”);
overlay.style.height = _height + “px”;
overlay.style.top = _top + “px”;
overlay.style.filter = “alpha(opacity=50)”;
overlay.style.opacity = “.5”;
};

I can see the div being created but has the lower div completely blocked, the opacity is not being set and I can’t figure out what am I doing wrong.

Thanks Tom.
“<100” was the initial setting but it didn’t work : the DIV disappeared completely in IE so I figured out I could temporarily disable the transparency effect for IE if I replaced “100”…

Thank you so much for this fix.

This is what I used and it worked perfectly in both FireFox and IE… Thanks again!!!

/* for IE */
filter:alpha(opacity=60);
/* CSS3 standard */
opacity:0.6;
width: 90%;
z-index: 1;}

Having read every ones comment I don’t think anyone has described this. But I am hoping someone one knows what is going on.

I have a custom input (file).
The input has 0 opacity (so I can make it look custom).
There is a div behind it and a span over it.

The input is in an iframe.
When I change the opacity of the iframe the opacity of the input breaks. Basically anything behind it disappears. So with the input at 0 opacity all I get is a blank spot where the input would go.

Input works fine if I don’t change the iframe.
And everything works fine in firefox.

Any ideas?

Sorry, I have already made the custom input box.

My problem is when I change the opacity of the iframe (which has the input in it) breaks the input box. I will set up a demo when go home.

Then you need this: http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/CSS/Q_20635012.html

I didn’t check if it works in all browsers, but I think you should put everything that is inside the IFRAME in a DIV and put this DIV with it’s contents in the IFRAME. Then you can set the opacity of the DIV in stead of the IFRAME. Remember, this works *only* if the IFRAME is on the same domain as you, otherwise you won’t be able to access the contents of the IFRAME.

Happy coding!
Tom

IE 7.0 using on vista. Read all reply, but no one mention there IE version, where it was working.

I have one div and inside that i have li and a. Following doesnt working in IE 7.0.

filter:alpha(opacity=50);
opacity: 0.5;
width:100%;
z-index:1;

FF, other browsers it works perfect. Whats wrong with IE always for CSS?

Actually, the following worked for me on IE7 on XP SP2:

div {
filter:alpha(opacity=50);
opacity: 0.5;
width:100%;
z-index:1;
}

abc
The ul was 50% opaque, but only after I got one of those yellow warning bars, telling me that the page is trying to run some form of scripting (apparently, in IE7 CSS = scripting … only the gods know why) because the file was created locally. I had to click it and allow the page to run the “active content.”

You could try to open this file: http://pet.shop.tm/opacity.php
It’s just a HTML file and hopefully it will be available when you open it 🙂
I will keep it up for only a few weeks, then I will probably take it down when I’ll clean up my web server again. If the page isn’t opening, try again later because my server may be turned off (atm experiencing a lot of power failures) or the hostname may not have updated (using dynamic ip and free DNS services from afraid.org which have quite a big timeout, unfortunately).

I’m using mootools for showing pic in a gallery but the opacity makes a bug in iexplorer7/8

.slideshow-images-visible { opacity: 1; }
.slideshow-images-prev { opacity: 0; }

Hi there,

i have a similar problem with css opacity in IE. Please have a look at the following site:

http://www.lcdhype.de.vu/stuff/iebug

As you can see, IE displays the picture with random white pixels. Those pixels are not stored in the picture and those pixels are displayed as soon as you add the css filter attribute to the img tag. This is a massive bug and i reported it to m$ already but got no response yet.

All your solutions with zoom, z-index and width won’t work here. My solution: add style=”width:%px” to the img tag where % is the actuall width of the img + 1. You may add a surrounding layer with the actual with of the picture and overflow:hidden when the additional pixel bugs you.

I hope this will help because i have spent so much time figuring this out.

It is not at all clear to me why “You can NOT have opacity > 100% because that simply doesn’t make sense.”

As Tom has explained, opacity is a scaling factor on alpha. Why this should only be an attenuation and never an amplification is a complete mystery to me. The way I see it, if a value > 100% is computed as the total opacity of an element, then surely the value used to compute its colour should be clipped at 100, while the value inherited by its children should remain > 100.

I’m pretty sure that in OpenGL / DirectX etc, you are able to define values > 1 for a colour channel. If the result of all the lighting / blending / whatever calculations for a given pixel are > 1, then 1 is what gets rasterized.

Oh, how I hate web design… its enough to drive a man to flash 😉 (no idea how that handles similar things, but I bet it’s less idiotic).

“It is not at all clear to me why “You can NOT have opacity > 100% because that simply doesn’t make sense.””
Think in physics:
Transparency 100% = opacity 0% = all the light goes through the object;
Transparency 0% = opacity 100% = all the light is reflected by the object;
So, if you try to have opacity 100%, the object should reflect more light than it’s actually receiving, which is nonsense because there is no other light reaching it except for the one … reaching it. At opacity = 100%, the object reflects all the light and lets you see it in the clearest way possible.

Think logic:
If the object is completely transparent (opacity = 0%) and you can see everything through it as if it wasn’t there, how much clearer could you see through it?
If the object is completely opaque (opacity = 100%), how much more opaque could it be?

Think programatic:
As a web browser, if you have to draw a pixel with opacity = 0%, you don’t display it at all, because it’s completely transparent and you want the user to see whatever was there first (behind it).
If you have to draw a pixel with opacity = 50%, you would make an average of the RGB defining that pixel and the one that was previously there (or usually the white background of the page, if there wasn’t anything) and plot the result.
If you have to draw a pixel with opacity = 100%, you just do it, overwriting whatever was before it.

Blending is done mathematically, something along the lines of:
actualR = newR * opacity + oldR * (1 – opacity)
actualG = newG * opacity + oldG * (1 – opacity)
actualB = newB * opacity + oldB * (1 – opacity)
So you have the old pixel that was at that position defined by (oldR, oldG, oldB), the new pixel (newR, newG, newB) and what you’re actually going to draw on the screen: (actualR, actualG, actualB).
Because of the way the computer screen is designed, every R/G/B pixel has to receive a value, usually between 0 and 255, where 0 = darkest, don’t light at all and 255 = lightest, light at full power. Now, consider that you have a black pixel defined by (0, 0, 0) at a given position and over it you have to draw a white pixel defined by (255, 255, 255) which has opacity 1.5 (that’s 150%). Here’s what you get:
actualR = actualG = actualB = 255 * 1.5 = 382.5
How can you tell that pixel to light up at 382.5 when the brightest it can achieve is 255?

In conclusion, opacity = 0% and opacity = 100% are physical limitations which also have effect in various other ways – logic, programatic and electronic. Any value outside the [0..1] bounds is an error, a fallacy, an illogical result of some bad computations. You are right, DirectX and OpenGL may easily implement their own error-fixing or error-ignoring (not sure about it, but it would be stupid to have something crash because of a tiny overflow of 0.0001) but the fact that you could send your video card a value of 1.5 for opacity doesn’t mean that it makes sense and you always have to think inside those bounds.

Let me know if it’s still not clear.

@ViRuSTriNiTy: That is an issue with some versions of Internet Explorer. Your example worked fine on a few computers but it showed the white pixels on others. It’s a “classic” issue with IE and there’s not much you can do about it. You could try to re-encode your image, give it a different compression value to get it to encode differently or use a different format.
I have seen this bug show up on various IE versions and file formats, so just converting from jpeg to png might not help… There’s no fix for this Microsoft bug (like there’s no fix for many, many others) and all you can try is a work-around by re-encoding.

@Tom: Sorry, but I stand by what I said, although perhaps I could’ve been clearer:

“The way I see it, if a value > 100% is computed as the total opacity of an element, then surely the value used to compute its colour should be clipped at 100, while the value *inherited by its children* should remain > 100.”

So, the final computed opacity of an element would be limited 0-100%, but it would still be possible to define a relationship whereby a child was more opaque than its parent.

I just confirmed for myself that making a diffuse material colour > 1 in a colour channel in fixed function OpenGL lighting causes ‘more than 100% reflection’. This is calculations in a computer, not physics; conservation of energy need not apply if we don’t wish it to :).

To quote the OpenGL “Red Book”:
“For the versions of glColor*() that accept floating-point data types, the values should *typically* range between 0.0 and 1.0, the minimum and maximum values that can be stored in the framebuffer……

“Neither floating-point nor signed-integer values are clamped to the range [0,1] before updating the current color or current lighting material parameters. After lighting calculations, resulting color values outside the range [0,1] are clamped to the range [0,1] before they are interpolated or written into a color buffer. Even if lighting is disabled, the color components are clamped before rasterization.”
http://www.glprogramming.com/red/chapter04.html

To take a non-hypothetical CSS example: I have a menu which I want to overlay on a header, with opacity. This works and I’m happy with how it looks. I then want to add drop-down menus, but I find that if they have low opacity, they become illegible as they blend with the page content. So I wish to apply >1 opacity so that the drop-downs are more opaque than their parents. Tough, I can’t. Oh well; I’ll have to make another plan.

So, internal values used for calculation can be out of bounds, but the final value used in output is clipped: Let me know if it’s still not clear, or if you think I’m mistaken.

Whooops, my last statement was referring to how I *want* things to be, not how they are…

So, I’d like to be able to have a parent with “opacity: 0.5” and a child with “opacity: 2”, and have the child finally rendered with 100% opacity. This would be consistent with the fact that, AFAIK, if I specified “opacity: 0.5” for both of them, the child would end up with 25% opacity.

If I nested the child with “opacity: 2” inside something with >50% opacity, I would expect it to have 100% opacity as a result: no more, no less.

@Tom

Thanks for your reply. I throught i solved it with my method but i have white pixels again now T_T and reencoding of the picture in any way is not working because those pixels are there whatever i try to do (they are some times here and sometimes there, the location changes but it wont go away). the gif format is the only format where ie does not show the white pixel bug but i cannot save my pics as gif due to color los and therefore ugly gradients.

I’d just like to note here; in Safari, FireFox, etc. the opacity attribute multiplies the opacity of the element and its contents, whereas in Internet Explorer the filter attribute /sets/ the opacity value of the element.

So if the element you apply the filter to has transparent child-elements, then their transparency will be set to the new value. This is especially nasty if you have for-example a .png with partially transparent edges, as all pixels with opacity greater than 0.0 are set to whatever the new-value is, resulting in jagged-edges.

For example:
pixel’s opacity, opacity: 0.5, filter: alpha(opacity = 50)
75%, 37.5%, 50%
50%, 25%, 50%
25%, 12.5%, 50%

As far as I can see, nobody has mentioned M$’s alpha filter breaking if the page is longer than 2048px in IE7 (possibly other IE versions as well). Many have commented that this is due to Vista, XP, graphic cards, drivers etc etc, all not true! M$ sucks at programming and gets most things wrong basically charging for customers to be beta testers for their next product .

There is no way around the breaking alpha filter except to progmatically limit the size of the element that the filter is to be used on to 2048px high (or for everyone to use Firefox who implement opacity in CSS).

Writing this I have suddenly realised how much I wish M$ IE would just go away as most standards compliant code has to be hacked to work the same in IE!

Just fyi, I was working on a semi-transparent movable div overtop an image and “filter:alpha(opacity=80);” made it IE compatible but when I moved it, it would hide under the that was behind it in some areas. Adding “width:100%;height:100%;” worked but “zoom:1;” didn’t. Hope this helps someone.

@ Philip
Thanx the code wokred :
border: solid 1px #999;
background: #FFF;
color: #000;
opacity: .7;
filter:alpha(opacity=0);
width: 100%;
z-index: 2;

Mvg,
Avinash Bhageloe

Thanks!
Was trying with filter: alpha(opacity=1) like forever and nothing happened 🙂

Turns out that EI9 uses the standard opacity property, here’s a little hack dealing with older as well as newer versions:
if (/MSIE (d+.d+);/.test(navigator.userAgent)){ //test for MSIE x.x
var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
if (ieversion>=9) {
document.getElementById(LL_infoID[m_section]).style.opacity=’1′;
}
else {
document.getElementById(LL_infoID[m_section]).style.filter=’alpha(opacity=100)’;
}
}

It’s an old post, but since I found it someone else will also – the ‘filter’ code seems to break the id/anchor links in ie7 (that’s where I am seeing the problem.)
The area is in an overflow hidden area with named anchor text and the text doesn’t move when the filter is part of the css for that text area. Otherwise it’s fine.

So if you have opacity filter and your anchor id/text do not move, try turning off the opacity.

My CSS works in IE, but due to security settings in IE, it blocks the opacity, and the bar becomes solid white. It’s not until you click the pop up warning and allow the site to run ActiveX controls and scripts to run, that the site will display the opacity. IS there a way around this? so that in case a visitor of the page has the same security settings and doesnt realise they need to change the settings in order to view the page properly?

my code is :

.Bar {
width: 100%;
height: 70px;
background-color: #FFF;
opacity: 0.2;
filter: alpha(opacity=20);
position: absolute;
top: 300px;
}

Thanks. It really makes sense, that at least we can get the same effect on IE with few lines of changes. IE8 is not that bad. Personally the only change I make is removing rgba stuff, transitions, vendor-specific stuff and this opacity thing.
Thanks for the nice writing.

hey all I have used all the tricks for IE, but I couldn’t get the right way to do that.
so if you are trying opacity then use visible property this will work 🙂 i was searching for answers and added zoom, width, bla bla nothing happened.

My css

.hiden-element{opacity:0.0;
-ms-filter:”progid:DXImageTransform.Microsoft.Alpha(Opacity=0)”;
filter:alpha(opacity=0);
visibility:hidden;
/*—FOR LATEST BROWSERS EFFECTS —-*/
-webkit-transition: opacity .20s;
-moz-transition: opacity .20s;
-o-transition: opacity .20s;
transition: opacity .20s;}

.parent:hover .hiden-element{opacity:1.0;
visibility:visible; -ms-filter:”progid:DXImageTransform.Microsoft.Alpha(Opacity=100)”;
filter:alpha(opacity=100);}

visibility property works =)

Thank you, thank you, thank you! I had to remove the filter though. But using visibility instead of opacity works perfect in IE, while maintaining opacity in other (functional) browsers. Saved my day!

.BGtransparency {
font-family: Arial, Helvetica, sans-serif;
font-size: 36px;
font-style: italic;
font-weight: bold;
color: #000;
background: rgba(3,92,254,0.5);/*for firefox and chrome
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99035cfe);
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99035cfe);
/*you have to find alpha hexagonal value for MS IE

Hello!

Need your help…

Here is my code (i put it on codepen for easiest way to check it): http://codepen.io/JohnnyJuarez/pen/zHxaG

Everything works properly everywhere exept IE…actualy, I have IE11…
When I press and hold the button (Registration or OK) – it’s disappear…

I left every code i had used (just commented it by /* */), so youi can see that i had tried everything 🙁

Leave a Reply

Your email address will not be published. Required fields are marked *