I\'m experiencing something really strange!
I have a div that I\'m hiding with JS (jQuery). Like this:
$(\'#myDiv\').hide();
Then w
I've read Firefox 2 uses its own text rendering engine whenever opacity is applied (at least on a Mac). This sometimes look strange.
I've combated this with this CSS (and it doesn't seem to affect performance at all)
body {
-moz-opacity: 0.99;
}
This may work in IE too. Oh but you'll need to use IE's propriety filter property.