vote up 0 vote down star
1

I added the attribute opacity: .3; to my img tag but it only works for firefox. Is there a solution for firefox and ie8?

flag

3 Answers

vote up 3 vote down check
<img src="yourimage.jpg" alt="Text" class="opac" />

<style>
.opac
{
    opacity:0.3; filter:alpha(opacity=30); height: 150px; width: 150px;
}
</style>
link|flag
thanks stackoverflow is rescuing my day – Markus Sep 15 at 12:25
vote up 2 vote down

IE uses the filter property:

filter: alpha(opacity = 30); /* Supported by IE7 and 8 */

That should do the same as opacity: 0.3

link|flag
vote up 1 vote down

If you're using ie8 in standards mode you need to use:

-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
link|flag
IIRC, the short version works too: -ms-filter:"Alpha(Opacity=30)"; – scunliffe Sep 15 at 12:33

Your Answer

Get an OpenID
or

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