473,766 Members | 2,055 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Font Issues

Hello,

I have been reading a lot about fonts and I got to the following
conclusions:
1.Use % do define font size
2. Avoid defining font in Body and P tags
3. Avoid using Verdana

I understand the reason of point 1.

Point 2 not sure why is that. Why?

Finally, I really like Verdana. Why should I avoid it using? Because
its size gets to small?
And is there a font similar to verdana that I can use?
Is just that I think Verdana is a really easy font to read and looks
good ... under normal conditions.

Thanks,
Miguel

Nov 18 '07 #1
37 2268
On 2007-11-18, shapper wrote:
....
3. Avoid using Verdana
....
Finally, I really like Verdana. Why should I avoid it using? Because
its size gets to small?
And is there a font similar to verdana that I can use?
Is just that I think Verdana is a really easy font to read and looks
good ... under normal conditions.
The problems with Verdana have nothing to do with the font itself.
It has a larger x-height and width than most other fonts, but it
is only slightly larger than Helvetica or Arial.

The problems are the result of misguided attempts to make the font
appear the same size as other fonts by setting its size smaller
(either with the <fonttag, or with font-size in CSS).

Verdana is an attempt to improve on the classic Helvetica font,
solving some of the problems of that font: the similarity of a
capital I and lower-case L, for the 'rn' combination looking too
similar to an 'm', for example.

So long as you don't mess with the font-size, there is no reason
not to use it.

--
Chris F.A. Johnson <http://cfaj.freeshell. org>
=============== =============== =============== =============== =======
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
Nov 18 '07 #2
shapper wrote:
I have been reading a lot about fonts and I got to the following
conclusions:
1.Use % do define font size
2. Avoid defining font in Body and P tags
3. Avoid using Verdana

I understand the reason of point 1.

Point 2 not sure why is that. Why?
You want to place all your presentation in the style sheet, not in the
HTML.
Finally, I really like Verdana. Why should I avoid it using? Because
its size gets to small?
No, because you would probably set its size at 80% (common among authors
who don't know why), and on my computer where there is no Verdana, I see
a fall-back font (a regular-sized font, not the enlarged Verdana) at a
size too small to read comfortably.
And is there a font similar to verdana that I can use?
Is just that I think Verdana is a really easy font to read and looks
good ... under normal conditions.
See: http://k75s.home.att.net/fontsize.html

--
-bts
-Motorcycles defy gravity; cars just suck
Nov 18 '07 #3
shapper wrote:
>
1.Use % do define font size
2. Avoid defining font in Body and P tags

Point 2 not sure why is that. Why?
What do you mean by "tags"?

If you are going to set particular fonts you *should* define them in a
CSS selector for the body element. P will inherit fonts from body so
there is no reason to explicitly set them on P.

--
Berg
Nov 18 '07 #4
On Nov 18, 6:25 am, Bergamot <berga...@visi. comwrote:
shapper wrote:
1.Use % do define font size
2. Avoid defining font in Body and P tags
Point 2 not sure why is that. Why?

What do you mean by "tags"?

If you are going to set particular fonts you *should* define them in a
CSS selector for the body element. P will inherit fonts from body so
there is no reason to explicitly set them on P.

--
Berg
See "Doing it right" in
http://www.xs4all.nl/~sbpoley/webmatters/fontsize.html

Why should I "avoid specifying a font in CSS for <BODYor <P>"?

Thanks,
Miguel
Nov 18 '07 #5
In article
<a3************ *************** *******@w34g200 0hsg.googlegrou ps.co
m>,
shapper <md*****@gmail. comwrote:
See "Doing it right" in
http://www.xs4all.nl/~sbpoley/webmatters/fontsize.html

Why should I "avoid specifying a font in CSS for <BODYor <P>"?
The context is that if you do not do it, you can't go wrong. Not
that it is bad to do it well.

--
dorayme
Nov 18 '07 #6
On Sat, 17 Nov 2007, shapper wrote:
Finally, I really like Verdana. Why should I avoid it using?
You shouldn't - as long as you resist to specify a font size
for BODY or P.
Because its size gets to small?
Only if you define a font size for BODY. The real problem
is that {font-family: Verdana} almost always comes with
{font-size: 80%}. This is especially stupid when the reader
has already chosen Verdana in a suitable size as his
preferred font.

--
In memoriam Alan J. Flavell
http://groups.google.com/groups/sear...Alan.J.Flavell
Nov 19 '07 #7
Mon, 19 Nov 2007 17:36:42 +0100 from Andreas Prilop <aprilop2007
@trashmail.net> :
The real problem is that {font-family: Verdana} almost always comes
with {font-size: 80%}. This is especially stupid when the reader
has already chosen Verdana in a suitable size as his preferred
font.
That would apply to any font. It sounds like the argument is against
defining font-size:80%, not against Verdana.

I can't remember the exact reason off hand, but I remember there was
some problem specific to Verdana and not other fonts.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/200..._wont_help_you
Nov 19 '07 #8
Mon, 19 Nov 2007 18:58:53 -0500 from Jonathan N. Little
<lw*****@centra lva.net>:
Stan Brown wrote:
Mon, 19 Nov 2007 17:36:42 +0100 from Andreas Prilop <aprilop2007
@trashmail.net> :
The real problem is that {font-family: Verdana} almost always comes
with {font-size: 80%}. This is especially stupid when the reader
has already chosen Verdana in a suitable size as his preferred
font.
That would apply to any font. It sounds like the argument is against
defining font-size:80%, not against Verdana.

No, what the problem is folks that design with Verdana usually notice
that the text looks too large then style their pages

body { font-size:80%; }
You said "no", but you just agreed: the problem is the 80% font size.

Do you know why 100% Verdana is bad?

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/200..._wont_help_you
Nov 20 '07 #9
Stan Brown meinte:
Do you know why 100% Verdana is bad?
Given the same size (the percentage doesn't matter) Verdana is much
larger than other fonts.

Give it a try on a Windows system: Set up a text block with Verdana and
a size, so that it looks "nice". Then replace Verdana with some other
sans-serif or serif font and keep the size. See what happens.

Gregor

--
http://www.gregorkofler.at ::: Landschafts- und Reisefotografie
http://www.licht-blick.at ::: Forum für Multivisionsvor träge
http://www.image2d.com ::: Bildagentur für den alpinen Raum
Nov 20 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

133
6606
by: Philipp Lenssen | last post by:
Why is there no standardized and well-working way for a web-page to offer the font for download/embed it, in order to be displayed on the page? No matter what you think of the preferred font of a designer, many web-sites offer an image of the text instead to "force" this font -- which certainly can't be the solution (it's a bit of a hassle to maintain and create).
131
21685
by: Peter Foti | last post by:
Simple question... which is better to use for defining font sizes and why? px and em seem to be the leading candidates. I know what the general answer is going to be, but I'm hoping to ultimately get some good real world examples. Fire away! :) Regards, Peter Foti
4
16722
by: Csaba Gabor | last post by:
What I'd like to do is to be able to set the font of a textarea element to the same font that another element is using (say, for example, an <INPUT type=text ...> element, but if that's a no go, then a generic element's font will do OK, too. What's the correct way to do this, please (so that it will also work for IE 6)? The motivation for this is that I have some text on the screen and I want to insert a textarea element between the...
15
2650
by: chart43 | last post by:
> I work on Windows (unfortunately). But I regularly view my work in a Mac > (IE5.x and Safari). I do not notice the phenomenon that you describe. > But then, it hardly seems relevant. What's important is that 100% is > right for you on your setup, and right for someone else on their setup, > whatever there os is. > >> normal in my case results in too big on Windows. My code is all >> valid, so too are style sheets. > > I doubt you have...
3
7220
by: Barry Anderberg | last post by:
I'm using the .NET Memory Profiler by Sci Tech and I wrote a little test application to verify something odd I observed and it appears that System.Drawing.Font fails to dispose of its FontFamily. I run the following code: // BEGIN while( true ) { System.Drawing.Graphics dc=lblClock.CreateGraphics();
60
4785
by: deko | last post by:
As I understand it, most browser manufacturers have agreed on 16px for their default font size. So, this should be an accurate conversion for percentages: px % 16 = 100 14 = 87.5 13 = 81.25
40
2977
by: Paul Davis | last post by:
Hi all, I'm building some style sheets and trying to play the old game of balancing designer pixel perfection and still allowing users to adjust their font sizes. The compromise I've made with the designer is that he'll accept allowing users to change font sizes it it "looks right" with the default setting. I'm using em to set the font size. So, anyway, here's the problem. At 0.96em we get the perfect font size. But, if the font is...
53
5266
by: Jonas Smithson | last post by:
In his book "CSS: The Definitive Guide" 2nd edition (pgs. 116-117), Eric Meyer has an interesting discussion about "font-size-adjust" that was evidently dropped in CSS 2.1 due to browser non-support. I'm wondering if there's some way I could still get a primitive version of this functionality, because different fonts display at very different optical sizes for the same nominal sizes. For example, suppose I want type to display in...
1
1524
by: CMiner | last post by:
What I am trying to do is this: Let a user browse for font files that are not installed, select one, and show a sample of the font in a text box (That way the user can change the size, style, and text of the sample) I don't want to copy the font files to the Windows\Fonts\ folder. Tried that, causes a lot of issues with deleting the font file when the preview is done, even after disposing the text box, removing the font resources, and/or...
0
1393
by: Linda Liu[MSFT] | last post by:
Hi Al, Based on my understanding, you have an application which prints something to printers. The problem is that the font of "OCR A Extended" cannot be printed properly on some of printers. If I'm off base, please feel free to let me know. I performed a test printing the font of "OCR A Extended" to a printer in my office but didn't reproduce the problem on my side. The font was printed properly in my test. The model of the printer I...
0
9568
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10168
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10008
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9837
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6651
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5279
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5423
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3929
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.