Gray out image with CSS? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:46:01Zhttp://stackoverflow.com/feeds/question/286275http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/286275/gray-out-image-with-css15Gray out image with CSS?Richard Poirier2008-11-13T04:42:13Z2008-11-14T20:27:54Z
<p>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)?</p>
<p>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.</p>
http://stackoverflow.com/questions/286275/gray-out-image-with-css/286279#28627922Answer by Owen for Gray out image with CSS?Owen2008-11-13T04:45:23Z2008-11-13T04:59:42Z<p>does it have to be gray? you could just set the opacity of the image lower (to dull it). alternatively, you could create a <code><div></code> overlay and set that to be gray (change the alpha to get the effect).</p>
<p>html:</p>
<pre><code><div id="wrapper"><img id="myImage" src="something.jpg" /></div>
</code></pre>
<p>css:</p>
<pre><code>#myImage {
opacity : 0.4;
filter: alpha(opacity=40); // msie
}
// or
#wrapper {
opacity : 0.4;
filter: alpha(opacity=40); // msie
background-color: #000;
}
</code></pre>
http://stackoverflow.com/questions/286275/gray-out-image-with-css/286305#2863050Answer by djensen47 for Gray out image with CSS?djensen472008-11-13T05:10:13Z2008-11-13T05:20:01Z<p>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.</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/286275/gray-out-image-with-css/286315#2863150Answer by VonC for Gray out image with CSS?VonC2008-11-13T05:16:56Z2008-11-13T05:16:56Z<p>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. </p>
<p><a href="http://lyxus.net/mv" rel="nofollow">http://lyxus.net/mv</a> 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. </p>
<p>You might also want to give it a grey border.</p>
http://stackoverflow.com/questions/286275/gray-out-image-with-css/288532#2885321Answer by alexmeia for Gray out image with CSS?alexmeia2008-11-13T22:13:44Z2008-11-13T22:13:44Z<p>Better to support all the browsers:</p>
<pre><code>img.lessOpacity {
opacity: 0.4;
filter: alpha(opacity=40);
zoom: 1; /* needed to trigger "hasLayout" in IE if no width or height is set */
}
</code></pre>
http://stackoverflow.com/questions/286275/gray-out-image-with-css/291296#2912964Answer by Nathan Long for Gray out image with CSS?Nathan Long2008-11-14T20:27:54Z2008-11-14T20:27:54Z<p>If you don't mind using a bit of JavaScript, jQuery's fadeTo() works nicely in every browser I've tried.</p>
<pre><code>jQuery(selector).fadeTo(speed, opacity);
</code></pre>