vote up 5 vote down star
2

For IE7, it's possible to add

filter: none;

to the body css to disable cleartype on fonts through CSS. I don't like the fuzzy look it gives, and it isn't really consistent across browsers. IE; Firefox and IE6 show it differently.

IE8 however, seems to ignore the css option, even when forcing the browser into IE7 compatibility mode using:

<meta http-equiv="X-UA-Compatible" content="IE=7" />


TL;DR: How do I disable clear-type fonts in IE8 through CSS?

flag

1  
To the downvoters: My question was not if it was a good idea to disable cleartype - you can leave that up to my own consideration. The question was HOW to do it. – Daniel Jun 23 at 9:44
3  
Do you like it when your browser is hijacked? When the window is resized? When you get spammed with popups? When the address bar is disabled? This is a classic case of thinking you know better when you clearly have no right or need to be messing with it at all. Consider the reverse - what if a website forced cleartype to be on? – Jon Grant Jun 23 at 9:52
1  
If it matters at all, the webpage will be used inhouse (intranet) by the customer. – Daniel Jun 23 at 10:03
2  
One of the most important lessons I've learnt is, "the customer is not always right". Half the time, they don't even know what they want. If a customer asked you to implement an exploit to install spyware on visitor's PCs, would you do it? Just explain that it's not reliably possible or even desirable. – Jon Grant Jun 23 at 10:19
1  
@Joel, then lucky for you this isn't a question about what you want as a user. – Daniel Jun 23 at 18:30
show 3 more comments

5 Answers

vote up 4 vote down check

From what I recall, Internet Explorer 7+ disables ClearType when a filter is set on an element

#target {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=99)";
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=99);
}

Also, do consider that many users may find disabling ClearType to be annoying. Use sparingly!

link|flag
Seems to work, one step closer to making my pages consistent across different browsers! :) – Daniel Jun 23 at 9:41
Perfect. Does it also work with -ms-filter:none; filter:none; as well? because that's probably more correct. – rpetrich Jun 23 at 9:44
Unfortunately, no. – Daniel Jun 23 at 9:44
Ah, too bad. As is, the markup seems a little ugly. Also, added warning to hold off the downvoters :) – rpetrich Jun 23 at 9:46
vote up 9 vote down

You can't. ClearType is a user setting on the browser. Any CSS which would disable it for certain elements is most likely a bug, not a feature (I've noticed it gets disabled for some dynamically generated or animated elements) and shouldn't be relied upon.

Whatever your preference in this regard is is probably not the user's one who sees your site. So why bother? Whoever doesn't like ClearType probably has it disabled already.

Note: The reason why it works with filters is that filters are not rendered by the browser but something else (DirectX probably, considering the "DX" in there. I'd still consider that a side-effect, and not a feature).

link|flag
2  
Yeah, you leave my ClearType alone! – Benjol Jun 23 at 9:36
1  
I understand your concerns but, although constructive, it's not an answer to the question. (and also wrong in regards to not being able to do it in IE8) – Daniel Jun 23 at 9:54
2  
It's the answer best showing an understandig of what's going on. Even if you could find another IE8 hack, chances are that hack will also be fixed in IE9. You're fighting a battle you can't win. If you want pixel-perfect rendering, serve a PNG and forget about Opera Mobile. – MSalters Jun 23 at 9:58
vote up 1 vote down

There is no CSS solution to disable cleartype. The reason that you could do it in IE7 was a biproduct of how the browser rendered text in elements that used filters. Appearently IE8 handles this better so that you can't use that hack any more (at least not without actually applying some filter).

The use of cleartype is a user choise, and not something that you should impose on visitors. Personally I really like cleartype, and if I visisted a site where it was disabled I would think that the site looked really crappy.

The fact that text is rendered differently in different browsers and different operating systems is something that you have to live with. If you want it to look exactly the same for everyone, you have to make it an image.

link|flag
Why the downvote? If you don't say what it is that you don't like, it's pretty useless... – Guffa Jun 28 at 8:13
Is it true that IE8 fixes the ClearType "pop" during effects like fade? That would be great. I never understood why IE couldn't get it right when the other browsers seemed to do fine on Windows. – Nosredna Jul 12 at 19:06
vote up 0 vote down

Cleartype sometimes looks stupid in JavaScript/AJAX-based solutions but this topic possible answers to that question why some jQuery based animations look be broken in IE.. so answer is that when JavaScript makes fade effect with opacity (opactiy to 0 from 100 in 1 second duration) then cleartype fonts are removed from element that come to fade out and animation looks bloody shit.

link|flag
vote up 1 vote down

very good this code:

target {

-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=99)";
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=99);

}

congratulations.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.