Why do fonts in IE look so much better than in Firefox?
GeneralThis forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Distribution: Slack, Solaris, whatever I have space for
Posts: 32
Rep:
Why do fonts in IE look so much better than in Firefox?
I'm using Georgia, a font designed for on-screen viewing.
IE fonts look great; words are crisp, clear, and easy on the eye. Firefox looks, well, functional.
What gives? I'm getting headaches.
Bear in mind that I'm coding for the world and have no control over their Firefox installation. Sure, on my desktop I can do stuff to make it look better, but that's not what I'm asking.
I'm using Georgia, a font designed for on-screen viewing.
IE fonts look great; words are crisp, clear, and easy on the eye. Firefox looks, well, functional.
1) Can you provide screenshots and link to the some kind of test page for comparison?
2) Are you using Linux firefox? (not mentioned, and question is in "general") Which version? Which distribution?
Distribution: Slack, Solaris, whatever I have space for
Posts: 32
Original Poster
Rep:
Hi Folks,
~ I am using Windows FF v3.0.4
~ I do not have MS Core fonts installed, but the assumption is that the end-user will also have no extra fonts installed.
~ Screenie: http://www.miklas.org/images/font_comparison.png
css declaration.. perhaps you can recommend the best-looking FireFox serif font? But from what I understand the default FF font is a serif font... I'm surprised that it doesn't look better.
~ I am using Windows FF v3.0.4
~ I do not have MS Core fonts installed, but the assumption is that the end-user will also have no extra fonts installed.
~ Screenie: http://www.miklas.org/images/font_comparison.png
css declaration.. perhaps you can recommend the best-looking FireFox serif font? But from what I understand the default FF font is a serif font... I'm surprised that it doesn't look better.
~ I am using Windows FF v3.0.4
~ I do not have MS Core fonts installed, but the assumption is that the end-user will also have no extra fonts installed.
~ Screenie: http://www.miklas.org/images/font_comparison.png
css declaration.. perhaps you can recommend the best-looking FireFox serif font? But from what I understand the default FF font is a serif font... I'm surprised that it doesn't look better.
It still would be nice to have full html code for comparison, not just css. This:
Code:
<HTML>
<HEAD>
<style type="text/css">
.base {
color : #000000;
font-family:"Georgia";
font-size: 12pt;
text-decoration: none; }
</style>
</HEAD>
<BODY>
<div>
At lupatum delenit aigue duos dolor tempor sunt in culpa qui officia d dereud facils est er
</div>
</BODY>
</HTML>
gives (on Linux, ms core fonts are installed): Opera 9.54 Firefox 3.01
As you can see, opera finds and uses Georgia, while FireFox doesn't. Although maybe html isn't right. Anyway, I think your best bet is to ask mozilla developers or community.
--EDIT--
And another thing.
This:
Code:
<HTML>
<HEAD>
<style type="text/css">
.base {
color : #000000;
font-family:"Georgia";
font-size: 12pt;
text-decoration: none; }
</style>
</HEAD>
<BODY>
<div>
At lupatum delenit aigue duos dolor tempor sunt in culpa qui officia d dereud facils est er
</div>
<font face="Georgia">
At lupatum delenit aigue duos dolor tempor sunt in culpa qui officia d dereud facils est er
</font>
</BODY>
</HTML>
Gives this picture on firefox (see second line of text). Which means that firefox can use georgia after all.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.