IE is losing ClearType

后端 未结 7 966
滥情空心
滥情空心 2020-12-05 19:27

I\'m experiencing something really strange!

I have a div that I\'m hiding with JS (jQuery). Like this:

$(\'#myDiv\').hide();

Then w

7条回答
  •  一向
    一向 (楼主)
    2020-12-05 20:05

    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.

提交回复
热议问题