Gray out image with CSS? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:46:01Z http://stackoverflow.com/feeds/question/286275 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/286275/gray-out-image-with-css 15 Gray out image with CSS? Richard Poirier 2008-11-13T04:42:13Z 2008-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#286279 22 Answer by Owen for Gray out image with CSS? Owen 2008-11-13T04:45:23Z 2008-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>&lt;div&gt;</code> overlay and set that to be gray (change the alpha to get the effect).</p> <p>html:</p> <pre><code>&lt;div id="wrapper"&gt;&lt;img id="myImage" src="something.jpg" /&gt;&lt;/div&gt; </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#286305 0 Answer by djensen47 for Gray out image with CSS? djensen47 2008-11-13T05:10:13Z 2008-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>&lt;style&gt; #color { background-color: red; float: left; }#opacity { opacity : 0.4; filter: alpha(opacity=40); } &lt;/style&gt; &lt;div id="color"&gt; &lt;div id="opacity"&gt; &lt;img src="image.jpg" /&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/286275/gray-out-image-with-css/286315#286315 0 Answer by VonC for Gray out image with CSS? VonC 2008-11-13T05:16:56Z 2008-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#288532 1 Answer by alexmeia for Gray out image with CSS? alexmeia 2008-11-13T22:13:44Z 2008-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#291296 4 Answer by Nathan Long for Gray out image with CSS? Nathan Long 2008-11-14T20:27:54Z 2008-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>