|
<H1 ...><H2 ...>
It's important to understand with relative fonts that they are relative to the surrounding element. For example, if you set your
<H1 ...><H1 ...>
<STYLE TYPE="text/css">
<!--
H1 {font-size:150%}
-->
</STYLE>
Surprisingly, this rule will probably make the H1 characters
smaller than usual, not larger. That's because the 150% is relative to the surrounding element, not the normal size of an H1 element.

An example of how H1 is rendered at different sizes
Most browsers render H1 elements at twice the size of normal text. A relative size of 300% will probably give the effect of a fifty percent larger <H1 ...>
<STYLE TYPE="text/css">
<!--
H1 {font-size:300%}
-->
</STYLE>
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of the Open Content License and the Open Publication License. Contents may be redistributed or republished freely under these terms so long as credit to the original creator and contributors is maintained.