vote up 15 vote down star
5

What's the best way (if any) to make an image appear "grayed out" with CSS (i.e., without loading a separate, grayed out version of the image)?

My context is that I have rows in a table that all have buttons in the right most cell and some rows need to look lighter than others. So I can make the font lighter easily of course but I'd also like to make the images lighter without having to manage two versions of each image.

flag

5 Answers

vote up 22 vote down check

does it have to be gray? you could just set the opacity of the image lower (to dull it). alternatively, you could create a <div> overlay and set that to be gray (change the alpha to get the effect).

html:

<div id="wrapper"><img id="myImage" src="something.jpg" /></div>

css:

#myImage {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
}

// or

#wrapper    {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
    background-color: #000;
}
link|flag
Good ol' internet explorer. You can do more with the filter attribute; as it uses DirectDraw to do the rendering. But, then it only works on IE – Nelson LaQuet Nov 13 '08 at 4:55
Works exactly as I wanted. Thanks. – Richard Poirier Nov 13 '08 at 5:43
vote up 4 vote down

If you don't mind using a bit of JavaScript, jQuery's fadeTo() works nicely in every browser I've tried.

jQuery(selector).fadeTo(speed, opacity);
link|flag
vote up 1 vote down

Better to support all the browsers:

img.lessOpacity {   			
   opacity: 0.4;
   filter: alpha(opacity=40);
   zoom: 1;  /* needed to trigger "hasLayout" in IE if no width or height is set */ 
}
link|flag
vote up 0 vote down

Considering filter:expression is a Microsoft extension to CSS, so it will only work in Internet Explorer. If you want to grey it out, I would recommend that you set it's opacity to 50% using a bit of javascript.

http://lyxus.net/mv would be a good place to start, because it discusses an opacity script that works with Firefox, Safari, KHTML, Internet Explorer and CSS3 capable browsers.

You might also want to give it a grey border.

link|flag
opacity is a css3 feature though, the filter part is for MSIE specifically, other browsers will pick up opacity – Owen Nov 13 '08 at 5:28
vote up 0 vote down

Here's an example that let's you set the color of the background. If you don't want to use float, then you might need to set the width and height manually. But even that really depends on the surrounding CSS/HTML.

<style>
#color {
  background-color: red;
  float: left;
}#opacity    {
    opacity : 0.4;
    filter: alpha(opacity=40); 
}
</style>

<div id="color">
  <div id="opacity">
    <img src="image.jpg" />
  </div>
</div>
link|flag

Your Answer

Get an OpenID
or

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