We all know that the elastic layout "em" value for a given object is relative to the object's parent, e.g.:
<div id="div1" style="font-size:1em;">
<p>Hello</p>
<div id="div2" style="font-size:0.5em;">
<p>Hello</p>
<div id="div3" style="font-size:0.5em;">
<p>Hello</p>
</div>
</div>
</div>
But is it possible to make a subordinate DIV "reset" it's em value, or get its value from a parent higher up the chain?
Basically, I have some nested DIVs, and I want one of the inner ones to use the document's own em value. Using 1em is no good, as one of the DIV's parents already uses a fractional value.
Thanks in advance
Simon