Following the suggestion on http://www.alistapart.com/articles/elastic/, I have elastic font size schema of CSS. The result is more consistant between IE and Netscape if Netscape 7.1 responses the schema. I problem is the Netscape 7.1 doesn't always follow the schema. How to resolve this issue?
The following is the code:
body {
...
font-family: Helvetica, Arial, san-serif;
font-size: 80%; /* IE 6.0 */
}
html>body {font-size: 80%;} /* Mozilla, Opera */
The following is the code:
body {
...
font-family: Helvetica, Arial, san-serif;
font-size: 80%; /* IE 6.0 */
}
html>body {font-size: 80%;} /* Mozilla, Opera */
Comment