Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

I have users complaining that fonts are not clear on some browseres (especially displaying data in grids...I'm using Trebuchet MS per default of asp.netmvc3 css site styles)

Q: What is a good overall default font family size that displays with good resolution (easy on the eyes, easy to read, etc,)?

Any recommendations?

share|improve this question
Seems like a User Experience question. But, I want to know what everyone thinks too. – Josh Nov 16 '11 at 0:24

migrated from stackoverflow.com Nov 16 '11 at 14:05

7 Answers

Arial is probably the best choice for a standard font that is available on almost every system. Use Georgia as a complementary serif font.

Note that Arial is a knock-off of Helvetica which is typically available to users of Apple products but may not be available to Windows users. I generally specify:

font-family: helvetica, arial, sans-serif;
share|improve this answer

Trebuchet MS is good for screens,

Times New Roman is for printing on paper.

Verdana is good for small texts, but Verdana trend is ending.

Courier New is good for programming codes, because it is monospace.

Trebuchet MS - Helvetica and Arial family is the current best, this is used in apple devices and people love it. do not use small fonts.

People are using hi-res screens more and more. Use large fonts wherever possible.

Switch the fonts to make people differentiate categories of paragraphs. like comments are Helvetica and posts are Arial, or vice versa.

share|improve this answer

Most of the fonts I've found on http://www.google.com/webfonts#HomePlace:home are quite good at most resolutions.

share|improve this answer

These links should prove helpful:

http://www.angelfire.com/al4/rcollins/style/fonts.html

http://www.hobo-web.co.uk/best-font-size/

Use only clear, commonly used fonts. Avoid the use of small text. Users should have the ability to scale fonts.

share|improve this answer

In my experience: Tahoma, Arial, Helvetica, Verdana, Times new romen are the safest.

In css3, you can use @font-face to embed other fonts - but you have to be careful and check the font license before using them in your site.

share|improve this answer

This problem lies with how the Operating System & Browsers handle the font. Because every browser and operating system rasterizes the font differently you can have different results for each browser.

My Suggestion for your Default font-family line is this

font-family:'Lucida Grande', Helvetica, Arial;

Also you should add

font-smooth:always;

to improve the smoothing of the font upon rasterization. This will make the text appear less pixelated.

Hope this helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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