i have something like this
<body>
<h2>
Blue
<span>
<a ....>add to combo</a>
</span>
</h2>
</body>
and css
#body {font-size: 100%}
h2{font-size: 200%}
a{font-size: 80%}
now ive been reading up and realise that the link a wont be 80% of 100% but rather 80% of 200% of 100% because percentages are taken from parents size.
However Id like all my font-size declarations in percentages to not inherit, but rather to just calculate from some site wide base font-size say 16px?
How do you do that?