473,396 Members | 1,894 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

handling multi browser font sizes

J
I've run CSSCheck on my style sheets and I always get a warning
similar to this:

"font: bold 9pt/100% sans-serif

Warning: Absolute length units should not generally be used on the Web ..."

Yet if I use 'x-small' instead of 9pt, I get bigger type on IE6 and smaller
type on
Mozilla. My choices seem to be:

1. keep the absolute 9pt setting in order to maintain a much more consistent
display between browsers (and break the spirit of the stylesheets)

2. use 'x-small' and live with the different display results (yet be
compatible with
user defined stylesheets, and other output media).

Is that it?


Jul 20 '05 #1
115 7093
"J" <so*********@nobody.com> wrote in message
news:40***********************@news.twtelecom.net. ..
...
| 2. use 'x-small' and live with the different display results
(yet be
| compatible with
| user defined stylesheets, and other output media).

It is not you, but your users who have
to put up with it. They will set fonts
to a size of their own choosing if you
do not stuff them up by specifying
fonts in pixels.

For the sake of useability, you should
never specify fonts in pixels..

--
Andrew Thompson
* http://www.PhySci.org/ PhySci software suite
* http://www.1point1C.org/ 1.1C - Superluminal!
* http://www.AThompson.info/andrew/ personal site
Jul 20 '05 #2

"J" <so*********@nobody.com> wrote in message
news:40***********************@news.twtelecom.net. ..
I've run CSSCheck on my style sheets and I always get a warning
similar to this:

"font: bold 9pt/100% sans-serif

Warning: Absolute length units should not generally be used on the Web ...."
Yet if I use 'x-small' instead of 9pt, I get bigger type on IE6 and smaller type on
Mozilla. My choices seem to be:

1. keep the absolute 9pt setting in order to maintain a much more consistent display between browsers (and break the spirit of the stylesheets)
Theoretically, it's not your job to assure absolute consistency among the
browsers. It's up to the browsers to decide what base size to use for text
they display. If a user doesn't like his browser's default, then he can use
the browser's mechanism for increasing or decreasing the text size. If he
prefers the way pages look in a different browser, then he'll use a
different browser. Life is just too short, unless the demand for consistency
comes from your customer and you're getting paid by the hour.

Having said that, I think it's reasonable to specify a font size from within
a range. Larger text is more open, more friendly; smaller text is more
formal, more serious, and makes better use of the available space. Moreover,
if I set

body { font-size: 100%; sans-serif; }

then the text seems ridiculously large to me in ALL the graphical browsers.
So if my general body text is to be sans-serif, then I'm inclined to use
font-size of 80%-90%. For serif, 90%-100%. Hmm, using "small" instead of
percentages, I seem to get decent results with both serif and
sans-serif--and I find x-small much too small in all browsers.

2. use 'x-small' and live with the different display results (yet be
compatible with
user defined stylesheets, and other output media).

Jul 20 '05 #3
In article <Tq******************@news-server.bigpond.net.au>, andrew64
@bigNOSPAMpond.com enlightened us with...
"J" <so*********@nobody.com> wrote in message
news:40***********************@news.twtelecom.net. ..
..
| 2. use 'x-small' and live with the different display results
(yet be
| compatible with
| user defined stylesheets, and other output media).

It is not you, but your users who have
to put up with it. They will set fonts
to a size of their own choosing if you
do not stuff them up by specifying
fonts in pixels.

For the sake of useability, you should
never specify fonts in pixels..


You know, no one told me that (nor did I see it in the beginner's sites
I was using at the time) when I started out with web design (personal
sites).
I found out quite some time later that when I specified font in pixels,
trying to up the size in the browser did nothing.
I immediately changed all my sizes to small, medium, etc.

So, add my opinion to this one - don't use pixels. It's mean to normal
users and downright awful to visually impaired people.

It is not your job to worry about how the browser renders those sizes -
because if you specify them in relative terms like percents or small,
medium, etc, the user can easily change the size if they find it too
small. They can't do that if you use pixels.

--
--
~kaeli~
A man's home is his castle..., in a manor of speaking.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 20 '05 #4
J wrote:
I've run CSSCheck on my style sheets and I always get a warning
similar to this:

"font: bold 9pt/100% sans-serif


Unit "pt" is for print, not Web (as opposed to "px"). On the web you
better keep the font-sizes to the default size. Why would you want to
decrease that? It's one if not _the_ biggest accessibility issue on
today's Web and you want to repeat it? If it's something like a
footnote, try "90%" and the like.
Jul 20 '05 #5
J <so*********@nobody.com> wrote:
I've run CSSCheck on my style sheets and I always get a warning
similar to this:

"font: bold 9pt/100% sans-serif

Warning: Absolute length units should not generally be used on the Web ..."
That is correct. See also http://css.nu/faq/ciwas-aFAQ.html#QA02
Yet if I use 'x-small' instead of 9pt, I get bigger type on IE6 and smaller
type on
Mozilla. My choices seem to be:

1. keep the absolute 9pt setting in order to maintain a much more consistent
display between browsers (and break the spirit of the stylesheets)
Why is consistency an issue? Who (besides you) will view your site with
more than one browser? And of the few who do view your site with more than
one browser, how many will care if the presentation is different?

And FWIW, 9pt is smaller than the minimum font size I've configured my
browser to use.
2. use 'x-small' and live with the different display results (yet be
compatible with
user defined stylesheets, and other output media).
That's going to be a size or two smaller than the browser's normal font
size, which is appropriate only for legalese and similar fine print that
the reader can safely ignore.
Is that it?


You could use percentages to specify fonts relative to the browser's normal
font size. I've read that this generally produces better results than using
the keywords (xx-small through xx-large).

Or you could leave the font size alone, which is a very good idea for
normal body text anyway.
--
Darin McGrew, mc****@stanfordalumni.org, http://www.rahul.net/mcgrew/
Web Design Group, da***@htmlhelp.com, http://www.HTMLHelp.com/

"Good teachers are costly. Bad teachers cost more." - Bob Talbert
Jul 20 '05 #6
kaeli wrote:

It is not your job to worry about how the browser renders those
sizes - because if you specify them in relative terms like percents
or small, medium, etc, the user can easily change the size if they
find it too small.
And if you don't specify any size for body text (body, p, li, etc),
then the user likely won't have to change the size of the text. And if
they do need to change it, their changes will work on every properly
authored site without breaking anything on badly designed ones.
They can't do that if you use pixels.


Sure. So use percent when you specify e.g. headings. But leave the
body text alone, and it's irrelvant.

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #7
Harlan Messinger wrote:

Theoretically, it's not your job to assure absolute consistency
among the browsers.
And practically, it's not possible to do that.
It's up to the browsers to decide what base size to use for text
they display. If a user doesn't like his browser's default, then he
can use the browser's mechanism for increasing or decreasing the
text size.
Right.
Having said that, I think it's reasonable to specify a font size
from within a range.
To suggest sizes for headings, and the like, sure.
if I set

body { font-size: 100%; sans-serif; }

then the text seems ridiculously large to me in ALL the graphical
browsers.
Funny.

body { font-size: 100%;}

produces text that is *precisely* the right size in my graphical
browser. Oh, right. I /configured/ my browser.
So if my general body text is to be sans-serif, then I'm inclined
to use font-size of 80%-90%. For serif, 90%-100%. Hmm, using
"small" instead of percentages, I seem to get decent results with
both serif and sans-serif


Perhaps you should configure *your* browser instead of solving your
browsing problem from the authoring end.

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #8
Harlan Messinger wrote:
"J" <so*********@nobody.com> wrote in message
news:40***********************@news.twtelecom.net. ..
I've run CSSCheck on my style sheets and I always get a warning
similar to this:

"font: bold 9pt/100% sans-serif

Warning: Absolute length units should not generally be used on the
Web
Yet if I use 'x-small' instead of 9pt, I get bigger type on IE6 and
smaller type on Mozilla.


The CSS spec doesn't define how 'smaller' should be rendered. It's only
defined to be smaller or equal in size to 'small'. Nobody should ever
use 'small', 'smaller' or 'x-small' for body text. See below.
Theoretically, it's not your job to assure absolute consistency among
the browsers. It's up to the browsers to decide what base size to use
for text they display. If a user doesn't like his browser's default,
Actually, it's up to the user to decide what the base size for text
should look like. Unfortunately, many users and even some developers
using Microsoft's products are unaware of this fact simply because MSIE
lacks the user interface to set base size. The user is supposed to hint
his 'User Agent' (a.k.a. browser) how he wants to view pages and then
User Agent proceeds to render the page the view user wants. The User
Agent may be a graphical browser like MSIE, Mozilla or Opera, or it may
be a text-only browser like Lynx or Links. Or it could be output driver
of a speech synthesis software or braille display.

It's not your work - as a page author - to specify some pixel or point
size for the text. Use percentages instead: if something should be
emphasized when compared to body text, make it a bit larger (perhaps
110%), if it's less important than body text, make it a bit smaller
(like 90%). Be warned that MSIE (and Opera?) has a bug that causes weird
rendering unless you say also "body { font-size: 100%; }", which is
interesting because that should be the default...

The 100% is the correct setting for the body text. This is for two reasons:

1) If the user is aware that he can set the default body text size (like
me) he has already adjusted it and 100% is THE BEST possible font size
(he selected it, after all, how could you know any better than him??)

2) If the user isn't aware about the possibility, he doesn't care enough
to look for it. Ergo, he's already HAPPY with the font size of 100%. Why
should you then make it smaller??
body { font-size: 100%; sans-serif; }

then the text seems ridiculously large to me in ALL the graphical
browsers. So if my general body text is to be sans-serif, then I'm


Yes, the DEFAULT SETTINGS of all graphical browsers DEFAULT to pretty
large body text. Why? Perhaps, because if you have to choice between
text being RIDICULOUSLY LARGE or UNREADABLE SMALL, then the former is
lesser of two evil. You cannot select a default settings that is perfect
for everybody, can you? You're supposed to change the settings of YOUR
user agent as you want. I repeat, if you don't change the setting or you
don't even bother for looking it, you don't mind enough and any web page
using the default size will be OK, really.

FYI, my MINIMUM font size is 11px. I'm using high resolution display and
using more pixels per character results to better rendering. Do not try
to destroy my beautifully shaped letters.

[ Note that 100% in the root element is supposed to be equal to
'medium'. However, you shouldn't use 'medium' or 'small' keywords for
any normal text because both of those keywords have different meaning in
different versions of MSIE -- that is, some versions interprete 'small'
as 100% and 'medium' as something like 110%. And some other versions of
the same browser interprete 'medium' as 100% and small as something like
90%. Considering that MSIE is the most used browser one cannot really
use keywords 'small' or 'medium' for anything. ]

--
Mikko

Jul 20 '05 #9
On Tue, 20 Jan 2004 12:32:34 -0500, "Harlan Messinger"
<h.*********@comcast.net> wrote:
Moreover, if I set

body { font-size: 100%; sans-serif; }

then the text seems ridiculously large to me in ALL the graphical browsers.


Well, if you haven't told the browser what size you like, it might.
Defaults tend to be on the large size for the benefit of people with
less good eyesight.

http://www.xs4all.nl/~sbpoley/main/adjust.html

--
Stephen Poley

http://www.xs4all.nl/~sbpoley/webmatters/
Jul 20 '05 #10

"Brian" <us*****@julietremblay.com.invalid-remove-this-part> wrote in
message news:EqgPb.107810$8H.205662@attbi_s03...
Harlan Messinger wrote:

Theoretically, it's not your job to assure absolute consistency
among the browsers.
And practically, it's not possible to do that.
It's up to the browsers to decide what base size to use for text
they display. If a user doesn't like his browser's default, then he
can use the browser's mechanism for increasing or decreasing the
text size.


Right.
Having said that, I think it's reasonable to specify a font size
from within a range.


To suggest sizes for headings, and the like, sure.
if I set

body { font-size: 100%; sans-serif; }

then the text seems ridiculously large to me in ALL the graphical
browsers.


Funny.

body { font-size: 100%;}

produces text that is *precisely* the right size in my graphical
browser. Oh, right. I /configured/ my browser.


Well, good for you. ;-) Consider that, in the US at least, it isn't
surprising to find on a can of franks and beans:

(1) Open can. (2) Empty contents into saucepan. (3) Heat until warm.

Besides, at least with IE, as far as I can tell it won't remember what text
size you set previously, so you have to do it each time. Ick. So, anyway, I
figure plenty of people have their browsers permanently stuck on medium, and
I just think the default actual size of text is simply unwieldy on that
setting. I also have a feeling that people with visual difficulties are more
likely to have actually bothered to figure out how to fix their browsers to
suit them, than are people who might think the text is too large, but for
whom it's only an esthetic concern.
So if my general body text is to be sans-serif, then I'm inclined
to use font-size of 80%-90%. For serif, 90%-100%. Hmm, using
"small" instead of percentages, I seem to get decent results with
both serif and sans-serif


Perhaps you should configure *your* browser instead of solving your
browsing problem from the authoring end.


Or I can choose not to be dogmatic, and gear things just a little bit for
some of the most common viewing circumstances, as long as the ability of
others to adjust things remains.

Jul 20 '05 #11

"Mikko Rantalainen" <mi**@st.jyu.fi> wrote in message
news:bu**********@mordred.cc.jyu.fi...
2) If the user isn't aware about the possibility, he doesn't care enough
to look for it. Ergo, he's already HAPPY with the font size of 100%.
Non sequitur.
Why
should you then make it smaller??
Because my intuition tells me that, all things considered, it's a net
benefit. I could be wrong but it's my sense that I'm right. And that, after
all, is the kind of judgment that professionals in every field and in every
era have had to bring to the table.
body { font-size: 100%; sans-serif; }

then the text seems ridiculously large to me in ALL the graphical
browsers. So if my general body text is to be sans-serif, then I'm
Yes, the DEFAULT SETTINGS of all graphical browsers DEFAULT to pretty
large body text. Why? Perhaps, because if you have to choice between
text being RIDICULOUSLY LARGE or UNREADABLE SMALL, then the former is
lesser of two evil. You cannot select a default settings that is perfect
for everybody, can you? You're supposed to change the settings of YOUR
user agent as you want. I repeat, if you don't change the setting or you
don't even bother for looking it, you don't mind enough


You think I shouldn't second-guess people's preferences and motivations, but
you seem happy enough to do it, as you again show here.
and any web page
using the default size will be OK, really.

FYI, my MINIMUM font size is 11px. I'm using high resolution display and
using more pixels per character results to better rendering. Do not try
to destroy my beautifully shaped letters.

[ Note that 100% in the root element is supposed to be equal to
'medium'. However, you shouldn't use 'medium' or 'small' keywords for
any normal text because both of those keywords have different meaning in
different versions of MSIE -- that is, some versions interprete 'small'
as 100% and 'medium' as something like 110%. And some other versions of
the same browser interprete 'medium' as 100% and small as something like
90%. Considering that MSIE is the most used browser one cannot really
use keywords 'small' or 'medium' for anything. ]


First you tell me that I should defer to the wisdom of the browser
manufacturers concerning the proper default text size because they
determined that too large is better than too small, and they know best. But
then the way they handle "small" and "medium" is dumb and we shouldn't trust
their judgment at all. I'm finding it very confusing being told I'm wrong
about one thing because the browser manufacturers are smart, but I'm wrong
about another thing because the browser manufacturers are dumb. Consistency
of argument is a virtue!

Jul 20 '05 #12
in post: <news:bu************@ID-114100.news.uni-berlin.de>
"Harlan Messinger" <h.*********@comcast.net> said:
Besides, at least with IE, as far as I can tell it won't remember what text
size you set previously,


it does
--
brucie - i usenet nude
Jul 20 '05 #13
*Philipp Lenssen*:

Unit "pt" is for print, not Web (as opposed to "px").


The Web can be printed as well, just not all at once.

I assume you meant "screen" instead of "Web".

--
"The scientific name for an animal that doesn't
either run from or fight its enemies is lunch."
Michael Friedman
Jul 20 '05 #14
Harlan Messinger / 2004-01-21 00:33:
"Mikko Rantalainen" <mi**@st.jyu.fi> wrote in message
news:bu**********@mordred.cc.jyu.fi...
2) If the user isn't aware about the possibility, he doesn't care enough
to look for it. Ergo, he's already HAPPY with the font size of 100%.


Non sequitur.


You did read the rest of my post, right? I explained, that if the
user really were unhappy with the font size of 100%, he would do
something. After that user has fixed the problem, font size of 100%
would be the best possible font size for that user. You cannot know
if an user has already adjusted his browser as he likes. If he has
already adjusted his browser and 100% is the perfect font size for
him, wouldn't it be a little dumb to readjust the font size to some
random smaller size? And if he hasn't adjusted the font size, does
that mean that he /really/ wants to read smaller text, but doesn't
have enough knowledge to fix the issue, or is it that the font size
he's seeing is already the best one for him?

The bottom line is that for advanced users that CAN configure their
browsers correctly, 100% is THE BEST possible font size for the body
text. And for the rest of the users, you cannot know which font size
would be the best.

If you know that 100% is THE BEST possible font size for some people
and the other people really wanted to use some smaller or bigger
font but don't know how to fix the problem, HOW do you know the
correct setting?

Why should you then make it smaller??


Because my intuition tells me that, all things considered, it's a net
benefit. I could be wrong but it's my sense that I'm right. And that, after
all, is the kind of judgment that professionals in every field and in every
era have had to bring to the table.


Ooh! Your intuition tells you that? Are you suggesting that you know
better than professional developers at Microsoft / Netscape / Opera
/ Apple / SomeBigCompany which font size an average user wants to
see? How many people have you interviewed? The fact that you like
smaller font than the browser's default isn't a good enough reason
to bug everybody, IMO.
body { font-size: 100%; sans-serif; }

then the text seems ridiculously large to me in ALL the graphical
browsers. So if my general body text is to be sans-serif, then I'm


Yes, the DEFAULT SETTINGS of all graphical browsers DEFAULT to pretty
large body text. Why? Perhaps, because if you have to choice between
text being RIDICULOUSLY LARGE or UNREADABLE SMALL, then the former is
lesser of two evil. You cannot select a default settings that is perfect
for everybody, can you? You're supposed to change the settings of YOUR
user agent as you want. I repeat, if you don't change the setting or you
don't even bother for looking it, you don't mind enough


You think I shouldn't second-guess people's preferences and motivations, but
you seem happy enough to do it, as you again show here.


I cannot understand where the word "here" refers to.

I'll list some facts:
1) You cannot make everybody happy. There isn't true
one-size-fits-all font size when it comes to personal preferences of
reading text on different devices. No matter what the default font
size is, somebody will be unhappy with it.
2) If you cannot provide PERFECT environment, it's better to provide
USABLE environment than UNUSABLE.
3) Reading text that's too large is uncomfortable (worst case), but
it might be IMPOSSIBLE to read text that's too small.
4) It's better to make sure that everybody can USE the environment
than to make it PERFECT for some and UNUSABLE for some.

I think we can agree that points 1)-3) are facts. I'm not sure if
you agree that 4) is a fact. However, if we take that 1)-4) are
facts, then it seems pretty simple to deduce that optimal
one-size-fits-all-default is to make default text big enough so that
almost everybody can read it (the legally-blind people would require
such a huge font size that the text would be PRACTICALLY UNUSABLE
for normal people).

[ Note that 100% in the root element is supposed to be equal to
'medium'. However, you shouldn't use 'medium' or 'small' keywords for
any normal text because both of those keywords have different meaning in
different versions of MSIE -- that is, some versions interprete 'small'
as 100% and 'medium' as something like 110%. And some other versions of
the same browser interprete 'medium' as 100% and small as something like
90%. Considering that MSIE is the most used browser one cannot really
use keywords 'small' or 'medium' for anything. ]


First you tell me that I should defer to the wisdom of the browser
manufacturers concerning the proper default text size because they


Perhaps I should have pointed out more clearly that you shouldn't
use 'small' or 'medium' if you care about MSIE users because some
versions of MSIE have BUGS (namely, 'small' and 'medium' have
different meanings than CSS spec says). Unless MSIE were such
popular the issue wouldn't be worth mentioning. But because it seems
that many people in this thread are suggesting that you should use
keywords to define font size, I decided to warn against it.
Percentages should work fine for defining the font size of other
than body text IF you define body { font-size: 100%; }, which is
only a workaround for an another MSIE bug.

I still think that the default font size of many browsers is the
best possible DEFAULT. If YOU think that the default font size is
too large, perhaps YOU should configure your browser. If you modify
the page instead, you get PERFECT text for you, but every visitor to
the page gets TOO SMALL text.
The reason I explain this issue so much is that I really don't want
the future where
1) Page author THINKS that the default font size is too large
2) Page author decides to set body text size to 80%
3) Majority of the page authors do steps 1) and 2) but they disagree
on the percentage; some set it to 95%, some set it to 65%.

Now, if I KNOW that perfect font size FOR ME would be EXACTLY 86% of
the default font size, what size I should set the base font size to
get correct end result after the fact that the page author
readjusted my body text size to "better" value? This is a real
problem already today, but I try to prevent it getting any worse.

--
Mikko
Jul 20 '05 #15

"Mikko Rantalainen" <mi**@st.jyu.fi> wrote in message
news:bu**********@mordred.cc.jyu.fi...
Harlan Messinger / 2004-01-21 00:33:
"Mikko Rantalainen" <mi**@st.jyu.fi> wrote in message
news:bu**********@mordred.cc.jyu.fi...
2) If the user isn't aware about the possibility, he doesn't care enough
to look for it. Ergo, he's already HAPPY with the font size of 100%.
Non sequitur.


You did read the rest of my post, right? I explained, that if the
user really were unhappy with the font size of 100%, he would do
something.


Non sequitur. In other words, I don't believe as you do that one can or
should act on the assumption that stimulus and reaction go together in the
inevitable manner that you suggest.
After that user has fixed the problem, font size of 100%
would be the best possible font size for that user. You cannot know
if an user has already adjusted his browser as he likes. If he has
already adjusted his browser and 100% is the perfect font size for
him, wouldn't it be a little dumb to readjust the font size to some
random smaller size?
Isn't it dumb to assume that someone has exactly one perfect font size and
is incapable of dealing with any other? Since, as you keep repeating, I
can't know who the reader is, isn't it dumb to assume the reader *is*
someone who has made the adjustments that you claim?
And if he hasn't adjusted the font size, does
that mean that he /really/ wants to read smaller text, but doesn't
have enough knowledge to fix the issue, or is it that the font size
he's seeing is already the best one for him?
Any of these. It varies person by person. It is presumptuous of you to
assume he is happy with the status quo, or that he has even considered
whether he's happy with it.

The bottom line is that for advanced users that CAN configure their
browsers correctly, 100% is THE BEST possible font size for the body
text. And for the rest of the users, you cannot know which font size
would be the best.

If you know that 100% is THE BEST possible font size for some people
and the other people really wanted to use some smaller or bigger
font but don't know how to fix the problem, HOW do you know the
correct setting?

Why should you then make it smaller??
Because my intuition tells me that, all things considered, it's a net
benefit. I could be wrong but it's my sense that I'm right. And that, after
all, is the kind of judgment that professionals in every field and in every era have had to bring to the table.


Ooh! Your intuition tells you that? Are you suggesting that you know
better than professional developers at Microsoft / Netscape / Opera
/ Apple / SomeBigCompany which font size an average user wants to
see?


Wow. And I suppose everything else Microsoft, or Netscape, has done in the
best is smarter than anything I would come up with us well. Because no one
*ever* criticizes Microsoft or Netscape. Everyone in the world thinks that
everything about their browsers is just as good as good can possibly be. Oh,
and everybody in the world loves Clippy, the Help Agent in Microsoft Office
products. (The fact that their on-line help used to be context sensitive and
now no longer is is beside the point, I suppose.) And they were right on
about the need for a UI like Microsoft Bob, weren't they?

Don't *ever* try to get me to cave in on an opinion by holding the
"brilliance" of Microsoft, or of any other company, over my head.

How many people have you interviewed? The fact that you like
smaller font than the browser's default isn't a good enough reason
to bug everybody, IMO.
I've already explained the theory behind choice of type size. I didn't make
it up.
body { font-size: 100%; sans-serif; }

then the text seems ridiculously large to me in ALL the graphical
browsers. So if my general body text is to be sans-serif, then I'm

Yes, the DEFAULT SETTINGS of all graphical browsers DEFAULT to pretty
large body text. Why? Perhaps, because if you have to choice between
text being RIDICULOUSLY LARGE or UNREADABLE SMALL, then the former is
lesser of two evil. You cannot select a default settings that is perfect
for everybody, can you? You're supposed to change the settings of YOUR
user agent as you want. I repeat, if you don't change the setting or you
don't even bother for looking it, you don't mind enough


You think I shouldn't second-guess people's preferences and motivations, but you seem happy enough to do it, as you again show here.


I cannot understand where the word "here" refers to.


Here. This place. The place where you used your psychic powers to determine
that if a user hasn't looked into whether his settings can be changed, it
can only mean that he doesn't "mind enough", and that you can proceed from
that conclusion.

[snip]

Jul 20 '05 #16
> > >>>body { font-size: 100%; sans-serif; }
Why not just omit the 100% altogether?

Leave my fonts ALONE!
Jul 20 '05 #17
On Wed, 21 Jan 2004, Harlan Messinger wibbled:
Any of these. It varies person by person. It is presumptuous of you to
assume he is happy with the status quo,
Equally, it is presumptuous of you to assume that his vendor has
provided him with something that he cannot use.
or that he has even considered whether he's happy with it.


Yes, I've seen this line of argument before.

1. "the vendor has provided the user with something horrible"
(unproven)

2. "the reader is too dumb to do anything about it" (unproven)

3. "everybody else sets an absolute font size, so the reader has
never seen their vendor's default font size. They would be appalled
if I were to use it" (unproven)

4. "if everyone else is delivering crap, then my only option is
to deliver the same crap". (Oh yes, no argument here!)

Well, it's a point of view. Fortunately, I have my web browser's min.
font size to save you. You can set as many different font sizes as
you like below that, and they'll all come out the same for me. Of
course, when I'm asked to actually _review_ a web page, I have to
remember to turn the min. font size off. And then it's Room 101 for
most of the reviewed pages, because they come out little better than
fly droppings for me.
Jul 20 '05 #18
Noozer / 2004-01-22 01:56:
>>body { font-size: 100%; sans-serif; }
^^^^^^^^^^
Why not just omit the 100% altogether?

Leave my fonts ALONE!


The page author should set body { font-size: 100% } if he's going to
set font-size of any element (say h1, h2, h3, span.footnote etc
etc). This is because MSIE has a bug that causes View:Text Size
control to freak out if any font size is defined with percentage
unit without specifying font size of body element. The point is,
body { font-size: 100% } should already be the browser default, but
somehow, it makes difference in case of MSIE.

--
Mikko
Jul 20 '05 #19
Mikko Rantalainen <mi**@st.jyu.fi> wrote:
Noozer / 2004-01-22 01:56:

Why not just omit the 100% altogether?

The page author should set body { font-size: 100% } if he's going to
set font-size of any element (say h1, h2, h3, span.footnote etc
etc). This is because MSIE has a bug that causes View:Text Size
control to freak out if any font size is defined with percentage
unit without specifying font size of body element.


Not true. The bug in IE is when font-size is set in ems then the size
difference is vastly inflated when the user has anything other than
Medium set.

So the solution is to either:
1. Set 100% on the body and then use ems
2. Use percentages throughout in which case you don't need an explicit
size set on the body.

Compare http://steve.pugh.net/test/test67a.html and
http://steve.pugh.net/test/test67b.html to see the bug in action.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #20
Not true. The bug in IE is when font-size is set in ems then the size
difference is vastly inflated when the user has anything other than
Medium set.

So the solution is to either: 1. Set 100% on the body and then use ems ^ see below. 2. Use percentages throughout in which case you don't need an explicit
size set on the body.


http://www.thenoodleincident.com/tut...phy/index.html

( and study this pages css )
http://www.thenoodleincident.com/tut.../template.html

http://www.alistapart.com/articles/elastic/

--
Mark
Jul 20 '05 #21
Mark Woodward <ma********************@internode.on.net> wrote:
Not true. The bug in IE is when font-size is set in ems then the size
difference is vastly inflated when the user has anything other than
Medium set.

So the solution is to either:
1. Set 100% on the body and then use ems

^ see below.


Okay, "100% or any other non-em explicit size". Could be 80%, could be
22px, could be 12cm. But in the context that was being discussed 100%
is the logical example to give.
2. Use percentages throughout in which case you don't need an explicit
size set on the body.


http://www.thenoodleincident.com/tut...phy/index.html


Agress with what I said except that he seems to think that smaller
than 100% for main body text is a good idea. I disagree. His page is
also unreadably small when IE is set to Smallest, which is the very
thing we're trying to avoid.

He's also obsessed with making the text the same size in all browsers
which is frankly a waste of time. My primary browser is Opera 7 and
doesn't show the percentages the same size a his screenshot of Opera
7.
( and study this pages css )
Yes, his CSS says that 76% is in his opinion the smallest you can
practiaclly use. So he's using the smallest possible font size for his
main body text. What's he going to use for his footnotes and legalese?

He's also using Verdana which as any long time reader of this
newsgroup knows causes most of the problems...
http://www.thenoodleincident.com/tut.../template.html
Triggers my minimum font size setting in Opera. Not a good indication.
Some of the text becomes unreadably small at just a small reduction to
90% zoom in Mozilla.
http://www.alistapart.com/articles/elastic/


Would work just as well (or badly as it also advocates much smaller
than default font sizes) with percentages used for all font sizes.
Some people seem obsessed by ems and don't seem to realise that for
font-size percentages are exactly the same thing.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #22
On Thu, 22 Jan 2004, Mark Woodward wrote:
http://www.thenoodleincident.com/tut...phy/index.html


Was that supposed to be a recommendation? That page is only rescued
by my min. font size setting - if I turn that off, then I get
microfonts.

As, indeed, you'd expect from what it says in the text. The author
requires readers to select a font size much larger than what they want
to see, so as to let the author size it down for them. Logically
absurd (yes, yes, I'm perfectly well aware of Win/IE): calling that
"sane" is, well, petitio principii.
Jul 20 '05 #23

"Alan J. Flavell" <fl*****@ph.gla.ac.uk> wrote in message
news:Pi*******************************@ppepc56.ph. gla.ac.uk...
On Wed, 21 Jan 2004, Harlan Messinger wibbled:
Any of these. It varies person by person. It is presumptuous of you to
assume he is happy with the status quo,
Equally, it is presumptuous of you to assume that his vendor has
provided him with something that he cannot use.


This is what Mikko said to me in the first place. I was responding to *him*
that *he* was being equally presumptuous. Is there a point to going around
in circles?
or that he has even considered whether he's happy with it.


Yes, I've seen this line of argument before.

1. "the vendor has provided the user with something horrible"
(unproven)

2. "the reader is too dumb to do anything about it" (unproven)

3. "everybody else sets an absolute font size, so the reader has
never seen their vendor's default font size. They would be appalled
if I were to use it" (unproven)

4. "if everyone else is delivering crap, then my only option is
to deliver the same crap". (Oh yes, no argument here!)


Just like every book that has ever been published in other than the one and
only and unique perfect optimal font size for the average human being has
been crap. I feel that the view you are presenting of the narrowness of
human beings' requirements is grossly and needlessly simplistic, and that if
the situation were as dire as you paint it to be, it would be astounding
that the human species has managed as long as it has.

Jul 20 '05 #24

"Noozer" <po********@127.0.0.1> wrote in message
news:_kEPb.215223$ts4.14712@pd7tw3no...
>>>body { font-size: 100%; sans-serif; }

Why not just omit the 100% altogether?

Leave my fonts ALONE!


I take it you refuse to read any book, magazine, or newspaper that is
printed in other than your one and only and immutable font size, without any
tolerance for even the most minute deviation.

Jul 20 '05 #25
I should point out that there are usability benefits to smaller fonts. For
those whose visual acuity is not a barrier, they greatly improve reading
speed an comprehension, because (obviously) the larger chunks of text are
within the main field of view and the brain is able to process them better.
Also, more material fits on the screen, making it easier for the user to
mentally relate parts of the display, follow the material, and find one's
place. Visual acuity is not the only consideration.

Jul 20 '05 #26
On Thu, 22 Jan 2004, Harlan Messinger wrote:
I should point out that there are usability benefits
....in choosing an optimal font size, yes.
to smaller fonts.
But not "smaller" than the reader's optimal choice!

By all means set *your* browser to an appropriate font size, and/or
lobby your vendor for better font sizing arrangements.

Recognise this? :-

The font size chosen by the user as a comfortable default (1 em)
provides more truly useful information about the rendering
environment than all the resolution-sniffing, window-querying,
"open-this-wide" logic you can throw at the problem.

That comes from a Real Typographer who understood the difference
between printed books and the web (as you have just demonstrated you
do not).
For those whose visual acuity is not a barrier, they greatly improve
reading speed an comprehension, because (obviously) the larger
chunks of text are within the main field of view and the brain is
able to process them better. Also, more material fits on the screen,
making it easier for the user to mentally relate parts of the
display, follow the material, and find one's place.
(Talk about stating the bleeding obvious...)
Visual acuity is not the only consideration.


If the author has made the text too small to be read comfortably - or
at all, then it *is* the primary consideration, nevertheless. And the
notorious operating system component (the very one that all the
argument rages around) does not support a min. font size setting.
Unlike quite a number of WWW-compatible browsers. So we mustn't be
too surprised that its vendor errs on the side of caution and sets its
initial default font size too large for many people's tastes and
needs.
Jul 20 '05 #27
Steve Pugh wrote:
Mark Woodward <ma********************@internode.on.net> wrote:
http://www.alistapart.com/articles/elastic/


it also advocates much smaller than default font sizes


A List Apart's site is really user unfriendly. I played around one day
making it better with user css. The following produces reasonable
results in Mozilla 1.3. Here it is in case anyone else wants to fix
their site.

body[onload*="A List Apart"] * {
font-size: 100% !important ;
font-family: lucida, arial, helvetica, sans-serif !important;
}

body[onload*="A List Apart"] div#wrapper {
margin: 10px 25px !important;
width: auto !important;
}

body[onload*="A List Apart"] div#maincontent {
margin: auto !important;
width: 38em !important;
}

body[onload*="A List Apart"] div#pagebody,
body[onload*="A List Apart"] div#sidebar,
body[onload*="A List Apart"] div#subnav {
width: auto !important;
margin: auto !important;
}

body[onload*="A List Apart"] div#menu li#five a {
border-right: 1px solid #ccc !important;
}

body[onload*="A List Apart"] div#footer {
font-size: 90% !important ;
}

body[onload*="A List Apart"] a:link, body[onload*="A List Apart"]
a:visited {
text-decoration: underline !important;
}

body[onload*="A List Apart"] a:visited {
color: #03c !important ;
}

body[onload*="A List Apart"] a:hover, body[onload*="A List Apart"]
a:focus {
color: #e30 !important ;
background-color: #bbb !important ;
text-decoration: none !important;
}

body[onload*="A List Apart"] a:active {
color: #33d !important ;
background-color: #bbb !important ;
}

And if anyone can improve on this, I'd appreciate knowing how.

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #28
Steve Pugh wrote:
The bug in IE is when font-size is set in ems then the size
difference is vastly inflated when the user has anything other than
Medium set Use percentages throughout in which case you don't need an explicit
size set on the body.


Are you sure of this? This is not intended to be read in a smart-alec
way. I too was under the (mistaken?) impression that you had to use
body {font-size: 100%} to avoid bugs. But I no longer use ems for
font-size. The thing is, I have only IE 5.01/Win2k to test on, and I'd
hate to have things break badly. So I just want to be sure before
removing that body font-size declaration. :)

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #29
Brian <us*****@julietremblay.com.invalid-remove-this-part> wrote:
A List Apart's site is really user unfriendly. I played around one day
making it better with user css. The following produces reasonable
results in Mozilla 1.3. Here it is in case anyone else wants to fix
their site.
[snip]
And if anyone can improve on this, I'd appreciate knowing how.


http://steve.pugh.net/taming.html

I concentrated on removing the fixed widths as Opera's minimum font
size setting had already taken care of the tiny text.

I was also writing with the aim of creating a cross-browser user
stylesheet hence my use of the #sectionone as a selector rather than
the attribute selector you use which whilst betterin many ways isn't
supported by IE.

Fixing the lack of distinction between :link and :visted is a good
idea. I may add that to my stylesheet as well.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #30
Steve Pugh wrote:

The bug in IE is when font-size is set in ems then the size
difference is vastly inflated when the user has anything other than
Medium set.

Compare http://steve.pugh.net/test/test67a.html and
http://steve.pugh.net/test/test67b.html to see the bug in action.


BTW, there is no difference in the a and b tests in MSIE 5.01/Win2k.
In both cases, 80% is different than .8em. I tested on "large" and
"small."

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #31
Harlan Messinger wrote:
I feel that the view you are presenting of the narrowness of
human beings' requirements is grossly and needlessly simplistic


Uh, that's backwards. We who argue that font-size: 100% for body text
is correct are assuming that "one-size fits all" is *not* going to
work. font-size: 100% means that lots of text-sizes will be used, and
that's a good thing.

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #32
Harlan Messinger wrote:
"Noozer" <po********@127.0.0.1> wrote in message
news:_kEPb.215223$ts4.14712@pd7tw3no...
Leave my fonts ALONE!


I take it you refuse to read any book, magazine, or newspaper that is
printed in other than your one and only and immutable font size


I take it you don't see the difference between print and the web?

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #33
Brian <us*****@julietremblay.com.invalid-remove-this-part> wrote:
Steve Pugh wrote:

The bug in IE is when font-size is set in ems then the size
difference is vastly inflated when the user has anything other than
Medium set.

Compare http://steve.pugh.net/test/test67a.html and
http://steve.pugh.net/test/test67b.html to see the bug in action.


BTW, there is no difference in the a and b tests in MSIE 5.01/Win2k.
In both cases, 80% is different than .8em. I tested on "large" and
"small."


Would have helped if I'd put font-size: 100% instead of just size:
100%.

Now working as I described originally in IE 5.01, IE 5.5 and IE6 on
WinXP.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #34
Brian <us*****@julietremblay.com.invalid-remove-this-part> wrote:
Steve Pugh wrote:
The bug in IE is when font-size is set in ems then the size
difference is vastly inflated when the user has anything other than
Medium set

Use percentages throughout in which case you don't need an explicit
size set on the body.


Are you sure of this? This is not intended to be read in a smart-alec
way. I too was under the (mistaken?) impression that you had to use
body {font-size: 100%} to avoid bugs.


I've never come across a bug with % sized text in Internet Explorer
(apart from when it screws up inheritence, e.g. with tables, but that
applies equally to ems).

Opera 5 and 6 (and very early versions of 7?) had a bug whereby 100%
was rendered 1px too small and thus inherited 100% would actually make
the font size increasingly small. This is why some people suggest
using 101% instead. But this bug was fixed in Opera a fairly early 7.x
release. Netscape 4 has a funny idea of what a % is, but Netscape 4
has a funny idea of what everything is.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #35
Steve Pugh wrote:
Brian wrote:
A List Apart's site is really user unfriendly. I played around
one day making it better with user css.
And if anyone can improve on this, I'd appreciate knowing how.
http://steve.pugh.net/taming.html


clever name :)

From A List Apart (which you quoted):
<quote>
ALA’s layout is CSS-based and our articles share a common id attribute
to the body tag, so if your browser provides the option to "Use My
Style Sheet" you can adjust ALA's look and feel to fit your fancy.
</quote>

Balderdash! They offer no such common id. Some pages use "sectionone",
some use "sectionthree". I don't know how many sections there are.
That's why I had to resort to the onload attrib selector.
I concentrated on removing the fixed widths as Opera's minimum font
size setting had already taken care of the tiny text.
I don't use that on Mozilla because I want to be able to critique
sites without opening up prefs and turning things off and on too often.
I was also writing with the aim of creating a cross-browser user
stylesheet hence my use of the #sectionone as a selector
But what do you do when your browse to a different section of the site?
rather than the attribute selector you use which whilst betterin
many ways isn't supported by IE.
My solution will only work in Moz and possibly Opera. I figure that
for the ciwas audience, that will help lots of people. If there were a
common id, it could work in MSIE, too. And it would have been easier
for me to write it. (I had some trouble getting the attrib selector to
work.)
Fixing the lack of distinction between :link and :visted is a good
idea. I may add that to my stylesheet as well.


:)

I wonder if showing them the user css would embarass them?

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #36
Brian wrote:
Steve Pugh wrote:
I was also writing with the aim of creating a cross-browser user
stylesheet hence my use of the #sectionone as a selector


But what do you do when your browse to a different section of the
site?


Sorry, I didn't finish reading the page before replying. I see how
you've done it now. BTW, I wish I had known about your page before
spending a couple of hours on my user css. Dang!

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #37
Steve Pugh wrote:
Brian wrote:
Compare http://steve.pugh.net/test/test67a.html and
http://steve.pugh.net/test/test67b.html to see the bug


there is no difference in the a and b tests in MSIE 5.01/Win2k.


Now working as I described originally in IE 5.01, IE 5.5 and IE6 on
WinXP.


Ditto for 5.01/Win2k (but then you knew that).

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #38

"Alan J. Flavell" <fl*****@ph.gla.ac.uk> wrote in message
news:Pi*******************************@ppepc56.ph. gla.ac.uk...
On Thu, 22 Jan 2004, Harlan Messinger wrote:
I should point out that there are usability benefits
...in choosing an optimal font size, yes.
to smaller fonts.


But not "smaller" than the reader's optimal choice!


Since "optimal" doesn't mean "minimal", there almost certainly *is* a range
around the optimal within which the reader is comfortable.

By all means set *your* browser to an appropriate font size, and/or
lobby your vendor for better font sizing arrangements.

Recognise this? :-

The font size chosen by the user as a comfortable default (1 em)
provides more truly useful information about the rendering
environment than all the resolution-sniffing, window-querying,
"open-this-wide" logic you can throw at the problem.
None of which is applicable to users who haven't made a choice.

That comes from a Real Typographer who understood the difference
between printed books and the web (as you have just demonstrated you
do not).
I understand that capabilities that people have of reading type within a
range of sizes and not just at a single size didn't disappear overnight with
the advent of the web.
For those whose visual acuity is not a barrier, they greatly improve
reading speed an comprehension, because (obviously) the larger
chunks of text are within the main field of view and the brain is
able to process them better. Also, more material fits on the screen,
making it easier for the user to mentally relate parts of the
display, follow the material, and find one's place.
(Talk about stating the bleeding obvious...)


And yet you don't seem to see that it has any role in the discussion.
Visual acuity is not the only consideration.
If the author has made the text too small to be read comfortably - or
at all, then it *is* the primary consideration, nevertheless.


But there's no reason to assume that that's happening, unless you subscribe
to the "people can only read one exact font size comfortably" theory.
And the
notorious operating system component (the very one that all the
argument rages around) does not support a min. font size setting.
Unlike quite a number of WWW-compatible browsers. So we mustn't be
too surprised that its vendor errs on the side of caution and sets its
initial default font size too large for many people's tastes and
needs.


Jul 20 '05 #39

"Brian" <us*****@julietremblay.com.invalid-remove-this-part> wrote in
message news:3YSPb.125853$na.133696@attbi_s04...
Harlan Messinger wrote:
I feel that the view you are presenting of the narrowness of
human beings' requirements is grossly and needlessly simplistic


Uh, that's backwards. We who argue that font-size: 100% for body text
is correct are assuming that "one-size fits all" is *not* going to
work. font-size: 100% means that lots of text-sizes will be used, and
that's a good thing.


I'm talking about *by one user*, and to show I have it backwards, you talk
about something else, which is the variance *across* users. Non sequitur.

Jul 20 '05 #40

"Brian" <us*****@julietremblay.com.invalid-remove-this-part> wrote in
message news:cZSPb.125860$na.134329@attbi_s04...
Harlan Messinger wrote:
"Noozer" <po********@127.0.0.1> wrote in message
news:_kEPb.215223$ts4.14712@pd7tw3no...
Leave my fonts ALONE!


I take it you refuse to read any book, magazine, or newspaper that is
printed in other than your one and only and immutable font size


I take it you don't see the difference between print and the web?


I don't see that human beings' capabilities or tolerances for variation
suddenly change when they read something on the web instead of on a printed
page.

Jul 20 '05 #41
Harlan Messinger wrote:
"Alan J. Flavell" <fl*****@ph.gla.ac.uk> wrote in message
news:Pi*******************************@ppepc56.ph. gla.ac.uk...
On Thu, 22 Jan 2004, Harlan Messinger wrote:

I should point out that there are usability benefits


...in choosing an optimal font size, yes.

to smaller fonts.


But not "smaller" than the reader's optimal choice!

Since "optimal" doesn't mean "minimal", there almost certainly *is* a range
around the optimal within which the reader is comfortable.

By all means set *your* browser to an appropriate font size, and/or
lobby your vendor for better font sizing arrangements.

Recognise this? :-

The font size chosen by the user as a comfortable default (1 em)
provides more truly useful information about the rendering
environment than all the resolution-sniffing, window-querying,
"open-this-wide" logic you can throw at the problem.

None of which is applicable to users who haven't made a choice.


Which seems to be the very majority. The vast majority of users out
there use IE for browsing and are unlikely to know how to set the
default font size of their browser, or even that such a thing can be done.
--
Nicolai Zwar -- http://www.nicolaizwar.com

"I don't post off-topic digests. I consistently ask the antagonists
what their postings have to do with classical music, which happens to be
the topic of this newsgroup."
(Dr. David J. Tholen, Astronomer, in his "Antagonists Digest, Volume
2452972, posted in rec.music.classical)

Jul 20 '05 #42
Tim
"Noozer" <po********@127.0.0.1> wrote
Leave my fonts ALONE!


"Harlan Messinger" <h.*********@comcast.net> wrote:
I take it you refuse to read any book, magazine, or newspaper that is
printed in other than your one and only and immutable font size, without any
tolerance for even the most minute deviation.


You do realise, that if a book is published with fonts that are too
small for someone to read, that they're not likely to read it? Only
some people are willing to sit there with a magnifying glass.

--
My "from" address is totally fake. The reply-to address is real, but
may be only temporary. Reply to usenet postings in the same place as
you read the message you're replying to.

This message was sent without a virus, please delete some files yourself.
Jul 20 '05 #43

"Harlan Messinger" <h.*********@comcast.net> wrote in message
news:bu************@ID-114100.news.uni-berlin.de...

"Noozer" <po********@127.0.0.1> wrote in message
news:_kEPb.215223$ts4.14712@pd7tw3no...
> >>>body { font-size: 100%; sans-serif; }

Why not just omit the 100% altogether?

Leave my fonts ALONE!


I take it you refuse to read any book, magazine, or newspaper that is
printed in other than your one and only and immutable font size, without

any tolerance for even the most minute deviation.


Yup! If I can't read it then I can't read it.

Of course you're forgetting that newspapers don't come in different
resolutions. Would you buy a newspaper that was only readable if pressed
against your face or held 30 feet away?

Tell me how it is that a website designed to be readable on an 800x600
monitor and isn't on a 1600x1200 monitor is a good design.
Jul 20 '05 #44
On Thu, 22 Jan 2004 09:10:20 -0500, Harlan Messinger
<h.*********@comcast.net> wrote:
I take it you refuse to read any book, magazine, or newspaper that is
printed in other than your one and only and immutable font size, without
any
tolerance for even the most minute deviation.

Why do you think most major magazines and newspapers have large-print
editions?
Jul 20 '05 #45
"Harlan Messinger" <h.*********@comcast.net> wrote in
news:bu************@ID-114100.news.uni-berlin.de:
I don't see that human beings' capabilities or tolerances for
variation suddenly change when they read something on the web instead
of on a printed page.


What you're forgetting is that the Web introduces several sources of
variation that simply don't exist in print. When you print a page on a
printing press (at least one that works correctly), several important
aspects of it are completely fixed: everyone will get the same page size.
Everyone will get the same physical size of letters. Everyone will get the
exact same typefaces.

On the Web, though, everything I just mentioned will be variable, not
fixed. Those aspects will be influenced by factors like monitor size,
computer type, user settings, and software environment. If, for some
reason, you truly wanted a Web page to display exactly the same for
everybody, the only way to achieve this would be to leave nearly every
aspect of its physical display unspecified and allow the users to adjust
the display until it conformed to your desired appearance. Paradoxically,
the harder you try to fix those physical aspects, the more variation in
display you'll get.

The only way, for example, that any Web author could even remotely hope to
get his text displayed in the same physical size on my 21" desktop CRT and
my 13" laptop LCD is to let me control the sizing. If he tries to fix its
size in pixels, it will be much bigger (quite possibly too big) on my
desktop than on my laptop, which it will quite possibly be too small.

The simple fact is that in print, the appearance of your work is only
slightly affected by one's viewing situation (and good print designers know
how to minimize that variation). On the Web, however, the opposite is
true, and trying to use print-design techniques for it only increases the
variation. To paraphrase Neal's examples from another thread, the more a
jazz quintet tries to play like a symphony orchestra, the worse it will
sound. What works well in one medium often falls flat on its face in
another medium. It matters not a bit that the techniques are long-
established in the first medium; they are in fact specific to that medium
and don't transfer well.
Jul 20 '05 #46
You guys just bitch about anything. If it's not yours then it's wrong.
Jul 20 '05 #47
ER*************@hotmail.com (Eric Cartman) wrote:
You guys just bitch about anything. If it's not yours then it's wrong.


"if your browser provides the option to "Use My
Style Sheet" you can adjust ALA's look and feel to fit your fancy."

That's from the site in question.

Maybe your happy to passively sit there with your mouth open accepting
whatever excrement other people want to shovel in, but don't presume
to think that everyone else should be as undiscriminating as you.

And it's funny that someone calling themselves after Eric Cartman
would complain about other people bitching.

Bye.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #48
Eric Bohlman wrote:

The only way, for example, that any Web author could even remotely hope to
get his text displayed in the same physical size on my 21" desktop CRT and
my 13" laptop LCD is to let me control the sizing. If he tries to fix its
size in pixels, it will be much bigger (quite possibly too big) on my
desktop than on my laptop, which it will quite possibly be too small.


I find it to be the reverse. Everything tends to look larger on the
lower resolution laptop and smaller on the higher resolution CRT. It's
the same issue nonetheless - the two will never look identical.

--
To email a reply, remove (dash)un(dash). Mail sent to the un
address is considered spam and automatically deleted.
Jul 20 '05 #49
kchayka <kc*********@sihope.com> wrote in
news:40***********************@news.twtelecom.net:
Eric Bohlman wrote:

The only way, for example, that any Web author could even remotely
hope to get his text displayed in the same physical size on my 21"
desktop CRT and my 13" laptop LCD is to let me control the sizing.
If he tries to fix its size in pixels, it will be much bigger (quite
possibly too big) on my desktop than on my laptop, which it will
quite possibly be too small.


I find it to be the reverse. Everything tends to look larger on the
lower resolution laptop and smaller on the higher resolution CRT.
It's the same issue nonetheless - the two will never look identical.


In my case, it's probably because my blasted on-board video controller
limits me to 1024x768 unless I go to an unacceptably low refresh rate, and
the funds for a motherboard upgrade aren't in yet.
Jul 20 '05 #50

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

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.