vote up 5 vote down star

Recently a client has complained about the appearance of a system font in IE6. Basically th issue is that IE6 doesn't support font-smoothing/anti-aliasing (I know you can turn it on in an OS setting or something). But someone threw out this gem:

"You can force font anti-alias in css by using pt instead of px."

I did a quick POC in various browsers and saw no difference. I found one reference to it online, last post on this forum:

http://www.webmasterworld.com/css/3280638.htm

This sounds like the equivalent of a web developer urban myth, my feeling is it's BS. Has anyone ever encountered it?

flag

3  
Probably the closest thing to this is that you can make IE stop using cleartype by using certain css properties, namely opacity.. but naw – meandmycode Apr 17 '09 at 19:17
total BS, indeed – dusoft Nov 26 at 22:11

8 Answers

vote up 7 vote down check

No, there's not really any way to control this as a web developer.

Small exceptions are that you can do some fake forcing of anti-aliasing by using Flash through sIFR, and some browsers won't anti-alias bitmap/pixel fonts (as they shouldn't, more info: Anti-Aliasing / Anti-Anti-Aliasing).

Also, as Daniel mentioned, it's ideal to be using em units for all fonts, see The Incredible Em & Elastic Layouts with CSS for more information about this.

link|flag
This is somewhat offtopic, but I'm not a proponent in elastic/bulletproof CSS layouts. They exponentially increase the amount of work if you're trying for a true "zoom" effect on a complex layout, and all A grade browsers except for IE6 support actual page zooming. – Sasha Sklar Apr 17 '09 at 20:04
vote up 1 vote down

This smells of rotten baloney.

Font smoothing is not something that the browser typically handles. I would be extremely surprised if such an old browser as IE6 has anti-aliasing code for strings.

link|flag
Antialiasing is usually handled by the system's drawing functions. This is not something the browser has to care about (some do, however, like IE7's default in this regard). – Johannes Rössel Apr 17 '09 at 19:17
vote up 1 vote down

I think you got it a bit wrong. Someone in the thread you pasted says that you can stop anti-aliasing by using px instead of pt, not that you can force it by using the latter. I'm a bit sceptical to both of the claims though...

link|flag
Yup, I misread that. – Sasha Sklar Apr 17 '09 at 20:04
vote up 0 vote down

I doubt there is anyway to force a browser to do anything. It would depend on the system configuration, the font used, browser settings, etc. It sounds like BS to me too.

As a note, always use relative sizes not PX.

link|flag
vote up 0 vote down

I say its a myth.

The only difference I've found between pt, px, and percent based fonts is in terms of what IE will scale when the Menu > View > Text Size > ?Setting? is changed.

IIRC:

  • the px and pt based fonts will NOT scale
  • percent based fonts scale in IE just fine

AFAIK:

  • The font anti-aliasing is mostly controlled by the windows setting for "ClearType" or in the case of IE7/IE8 the IE-specific setting for ClearType.
link|flag
vote up 0 vote down

Using an opacity setting of 99% (through the DXTransform filters) actually forces Internet Explorer to turn off ClearType, at least in Version 7. Source

link|flag
vote up 0 vote down

I found a really awkward solution using the zoom and filter ms-only properties Example (try with no aa, standard and cleartype): http://tinyurl.com/y9x84kn

How it works:

-zoom up text with zoom:x, x>1

-apply some blur(s) (or any other filter)

-zoom down with zoom:1/x

It's a bit slow, and very! memory-hungry method, and on non-white backgrounds it has some slight dark halo.

CSS:

.insane-aa-4b                  { zoom:0.25; }
.insane-aa-4b .insane-aa-inner { zoom:4; }
.insane-aa-4b .insane-aa-blur  { zoom:1;
  filter:progid:DXImageTransform.Microsoft.Blur(pixelRadius=2);
}

HTML:

<div class="insane-aa-4b">
<div class="insane-aa-blur">
<div class="insane-aa-inner">
  <div style="font-size:12px;">Lorem Ipsum</div>
</div></div></div>

You can use this short jQuery to force anti-aliasing, just add the ieaa class to anything:

$(function(){ $('.ieaa').wrap(
'<div style="zoom:0.25;"><div style="zoom:1;filter:progid:DXImageTransform.Microsoft.Blur(pixelRadius=2);"><div style="zoom:4;"><'+'/div><'+'/div><'+'/div>'
); });
link|flag
vote up -2 vote down

Adding the following line of CSS works for Chrome, but not Internet Explorer or Firefox.

text-shadow: #fff 0px 1px 1px;

link|flag

Your Answer

Get an OpenID
or
never shown

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