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?

link|improve this question

13  
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 Sloof Jun 23 '09 at 9:44
10  
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 '09 at 9:52
2  
I'm not downvoting as I think it is an interesting question. However unless you are creating the web site exclusively for yourself, why would you want to override the user's ClearType settings? – RichardOD Jun 23 '09 at 9:56
5  
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 '09 at 10:19
5  
@Joel, then lucky for you this isn't a question about what you want as a user. – Daniel Sloof Jun 23 '09 at 18:30
show 5 more comments
feedback

7 Answers

up vote 14 down vote accepted

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|improve this answer
Seems to work, one step closer to making my pages consistent across different browsers! :) – Daniel Sloof Jun 23 '09 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 '09 at 9:44
Unfortunately, no. – Daniel Sloof Jun 23 '09 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 '09 at 9:46
2  
@joey or... drumroll Pixel fonts! I like my pixel fonts crispy, thank you, and I want my users to see it as such! – Maurycy Zarzycki Sep 13 '11 at 18:22
show 3 more comments
feedback

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).

Note 2: Fixed as of IE 9, as expected. This really is a battle you can only lose, as many have told you before except you wouldn't listen.

link|improve this answer
4  
Yeah, you leave my ClearType alone! – Benjol Jun 23 '09 at 9:36
4  
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 Sloof Jun 23 '09 at 9:54
6  
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 '09 at 9:58
feedback

Juliano, body{ filter:none } is a better, cleaner solution. Using opacity causes problems in some situations.

To answer all the ClearType enthusiasts--I like ClearType too. I think it's a great advancement for LCD monitors. Problem is that when IE tries to use ClearType on some specific elements, it looks worse than if you had ClearType disabled. These include elements that are faded into view (using javascript) as well as imported @font-face fonts. If you like ClearType, then you're going to hate what IE does when it tries to use ClearType in these situations...your text looks chunky, fat and ugly.

In these cases, ClearType should be removed if possible to achieve the smooth fonts you guys want.

link|improve this answer
feedback

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 choice, 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|improve this answer
Why the downvote? If you don't say what it is that you don't like, it's pretty useless... – Guffa Jun 28 '09 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 '09 at 19:06
2  
Completely agreed. Why worry about IE7/8/9, when another browser or operating system will do it completely differently anyway? Text on OS X will look nothing like text on Windows will look nothing like text on Linux. Trying to make text display pixel perfect is an exercise in futility. – deceze Mar 30 '10 at 3:53
feedback

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|improve this answer
feedback

for some reason positioned elements (anything inside { position: relative } ) -- isn't animated w/ an opacity less than 1.

link|improve this answer
feedback

You can have both an MS CSS filter on an element and still enable ClearType on the font within. Just add a child element and set its css "position" to "relative" and ClearType does not get disabled. Copy the following and try it.

<style>
#parent{
     background-color:white;
     filter:progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=180,strength=2);
     position:relative;
     border:solid 1px black;
     padding:10px;
     width:500px;
}
#child{
     position:relative; /*THIS SOLVED THE CLEARTYPE DISABLING PROBLEM IN BOTH IE7 & IE8*/ :)
}
</style>

<div id="parent">
     <div id="child">This text should always be smooth</div>
</div>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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