Re: How to make font size constant in HTML
Nirvana wrote:[color=blue]
> How to make the font size constant in HTML code, so that in a web
> browser it remains fixed.
> For e.g in IE if you press CTRL and move mouse wheel front or back the
> font size changes,[/color]
use styles, thus:
p,td {font-size:11px}
if you use px as opposed to pt, percentages or anything else font size
will remain constant. Many people in this ng and elsewhere feel it's
bad practice to do this, but I feel differently, as many users don't
even know they can adjust font-size on the browser and sometimes fonts
come out horribly large, not because user needs it to be like that, but
b/c they don't know how to control it.. anyway, my two cents here, take
it or leave it.. pls see
font sizes in body of this page remain constant even if user tries to
change it by doing view -> text size in IE..
again, my issue here: I like Netscape, in which you specify what
font-size browser should use IF author hasn't specified font size, in IE
there's no such thing.. in IE I always have to change font size for
every page I view, as font usu. comes out too large (again, IF author
has not specified font size..)
Frances
Nirvana wrote:[color=blue]
> How to make the font size constant in HTML code, so that in a web
> browser it remains fixed.
> For e.g in IE if you press CTRL and move mouse wheel front or back the
> font size changes,[/color]
use styles, thus:
p,td {font-size:11px}
if you use px as opposed to pt, percentages or anything else font size
will remain constant. Many people in this ng and elsewhere feel it's
bad practice to do this, but I feel differently, as many users don't
even know they can adjust font-size on the browser and sometimes fonts
come out horribly large, not because user needs it to be like that, but
b/c they don't know how to control it.. anyway, my two cents here, take
it or leave it.. pls see
font sizes in body of this page remain constant even if user tries to
change it by doing view -> text size in IE..
again, my issue here: I like Netscape, in which you specify what
font-size browser should use IF author hasn't specified font size, in IE
there's no such thing.. in IE I always have to change font size for
every page I view, as font usu. comes out too large (again, IF author
has not specified font size..)
Frances
Comment