I have seen this issue on a couple of blogs and was there even on my blog too, hope things are cleared now or atleast with the next upcoming blog version of mine, things should be all fine. I am talking about the micro font size in IE specially those codes using MTCodeBeautifier.
If you are using relative font like em, setting your
body { font-size: 76%; }
Then using ems like
p, pre {
font : 400 1.0em/1.6em “Courier New”, Courier, monospace;
}
will definitely stop IE from showing fonts as micro, which keeps the text more or less legible when the user sets his/her font size to smallest or you define it as small, read further here at typography page at noodle incident. While we are here, this link should also be worth a read.
Brajeshwar posted this article
on Sun, Oct 5th, 2003 at 1:15 pm
Categorized under Technology






Comments Post Yours
There are 2 responses so far. You can follow any responses to this entry through the RSS feed. You can skip to the end and leave a response. Pinging is currently not allowed.
What I do is add this to my stylesheet:
pre { font-family:”Courier New”, Courier, mono; font-size: small; }
And wrap my code inside ‘pre’ tags.
I found there were diferent versions of micro floating around … one distorted and the other didn’t. There are also good replacments for micro I think that don’t distort ..
Post yours