Not sure if this is might be a Chrome bug (FF and IE work fine) since I've tried various work-arounds, especially those I found here, but to no avail: Removing the image border in Chrome/IE9
Basically I'm overlaying an image on top of another, and I've noticed that with Chrome if I scale the page to any zoom-level other than 100%, a grey image border appears around the overlay. You can see it in action here: http://jsfiddle.net/6HLzx/
EDIT: I updated the JSFiddle to include a better example of what I'm trying to accomplish.
// css
#background { position: fixed; left: 0px; top: 0px; border: none; border-style: none; z-index: 0; }
#overlay { position: fixed; left: 0px; top: 0px; border: none; border-style: none; z-index: 1;}
// html
<body>
<div id="background">
<img border="0" src="http://gorch.com/webstuff/background.png">
</div>
<div id="overlay">
<img border="0" src="http://gorch.com/webstuff/overlay.png">
</div>
</body>
Any ideas? Thanks in advance!
-jojohack