You don't. Every browser needs to be able to react to the sight impaired by
making the text larger (or smaller).
You need to design your site so that changes in font size doesn't affect the
general appearance. Different browsers, such as Internet Explorer, Opera,
Netscape, Avant, Firefox, The World will affect what is seen. You should
test in each.
You could use this kind of a .css entry for flexible font sizes:
body {
margin:0;
padding:0;
font-size:76%;
font-family:Arial, Helvetica;
color:#000;
background-color:#fff;
}
p {font-size:1em;}
h1 {font-size:1.8em;}
h2 {font-size:1.6em;}
or, if you want to use pt instead of em them that will be fixed.
However, as Mr. Davis pointed out, the End User can always trump the Web
Designer. Period!
hth.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.