MIR (Malarkey Image Replacement) IE6 fix
I’ve been using the MIR technique for image replacement for a while now, but always have to use a fix for IE6. In IE6 the method causes the first letter of the text being replaced to be displayed. Since I keep searching my email for the fix which was sent to me by Jay Gooby, I thought I’d post it on here.
[code lang="css"]
.mir { letter-spacing : -1000em; text-indent : -999em; overflow : hidden; }
/* Just for Opera, but hide from MacIE */
/*\*/html>body .mir { letter-spacing : normal; text-indent : -999em;
overflow : hidden;}
[/code]


