Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T17:09:54Z http://stackoverflow.com/feeds/question/86545 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning 6 Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? VirtuosiMedia 2008-09-17T19:14:06Z 2009-09-16T00:46:54Z <p>I've seen a few fixes for allowing PNG images to have transparency in Internet Explorer 6, but I've yet to find one that also allows you to set the background position in CSS. If you use sprites, it's a deal-breaker. I've resorted to using GIF's (which are not as high quality), not using transparent images at all, or serving a completely different stylesheet to IE6. Is there a fix for IE6 that allows for PNG transparencies AND background positioning?</p> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/86557#86557 3 Answer by Peter GA. for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? Peter GA. 2008-09-17T19:15:22Z 2008-09-17T19:15:22Z <p><a href="http://www.twinhelix.com/css/iepngfix/" rel="nofollow">check this</a></p> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/86608#86608 6 Answer by Prestaul for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? Prestaul 2008-09-17T19:20:06Z 2008-09-17T19:26:57Z <p>Yes. Convert your images to use indexed pallets (png256). You can support transparency (just like gif), but not an alpha channel.</p> <p>You can do this using <a href="http://www.irfanview.com/" rel="nofollow">Irfanview</a> and the pngout plugin, <a href="http://www.libpng.org/pub/png/apps/pngquant.html" rel="nofollow">pngquant</a> or <a href="http://pngnq.sourceforge.net/" rel="nofollow">pngnq</a>.</p> <p>The YUI performance team also did a <a href="http://assets.en.oreilly.com/1/event/7/Image%20Optimization_%20How%20Many%20of%20These%207%20Mistakes%20Are%20You%20Making%20Presentation.ppt" rel="nofollow">great presentation</a> that covers this an many other image optimization concepts.</p> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/86839#86839 4 Answer by Tom for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? Tom 2008-09-17T19:42:27Z 2008-09-17T19:42:27Z <p><a href="http://www.micahtischler.com/#mtjs_iepnghandler.js" rel="nofollow">This</a> is a new technique that has popped up in the last month or so. From the page:</p> <blockquote> <p>In this script image tags are supported, both with and without a blank spacer GIF, and background image PNGs may be positioned, as well as repeated, even if they're smaller than the content element they're in.</p> </blockquote> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/86976#86976 1 Answer by Ryan Grove for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? Ryan Grove 2008-09-17T19:56:47Z 2008-09-17T19:56:47Z <p>You can actually use pure CSS to get positioned background images with alpha transparency in IE6 by taking advantage of IE6's alpha filters and the CSS <code>clip</code> property. Julien Lecomte <a href="http://www.julienlecomte.net/blog/2007/07/4/" rel="nofollow">describes the technique on his blog</a>.</p> <p>Note that this technique does result in a performance hit for each use of an alpha filter.</p> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/92516#92516 2 Answer by Davy Landman for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? Davy Landman 2008-09-18T13:27:21Z 2008-09-18T13:59:40Z <p>When the background is static I use <a href="http://entropymine.com/jason/tweakpng/" rel="nofollow">TweakPNG</a> to change the Background Color chunk in the PNG to the correct color (instead of the default gray color). Any regular browser will ignore this because the alpha channel overrules it, but IE6 and lower will use that color instead of the alpha channel.</p> <p>This means we have transparency in IE7+ while degrading nicely in IE6 and lower. And all css positioning and repeating are possible (because there are no hacks!).</p> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/479899#479899 1 Answer by porneL for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? porneL 2009-01-26T14:09:57Z 2009-01-26T14:09:57Z <p><a href="http://www.twinhelix.com/css/iepngfix/" rel="nofollow">IE PNG Fix v2.0</a> has support for full alpha+<code>position</code>/<code>repeat</code>.</p> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/480085#480085 1 Answer by Andy Ford for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? Andy Ford 2009-01-26T15:09:34Z 2009-01-26T15:09:34Z <p><a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/" rel="nofollow">DD_belatedPNG.js</a> works very well</p> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/484329#484329 0 Answer by Tony Gray for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? Tony Gray 2009-01-27T17:21:01Z 2009-01-27T17:21:01Z <p>Here is more on DD_belataedPNG <a href="http://blog.tgrayimages.com/ie6-png-transparency-with-background-positioning-and-repeating/" rel="nofollow">http://blog.tgrayimages.com/ie6-png-transparency-with-background-positioning-and-repeating/</a></p> http://stackoverflow.com/questions/86545/is-there-a-javascript-png-fix-for-ie6-that-allows-css-background-positioning/691779#691779 0 Answer by Jeff for Is there a JavaScript PNG fix for IE6 that allows CSS background positioning? Jeff 2009-03-27T23:09:06Z 2009-03-27T23:09:06Z <p><a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/" rel="nofollow">http://www.dillerdesign.com/experiment/DD_belatedPNG/</a> This is the way to go!! Easy to implement and it works!</p>