Can I override the fixed font size of a parent element (e.g. div) with a non-fixed font size.I have a problem where for a particular HTML page, I would like the element to use a font size relative to the Body element and not relative to the parent div.My HTML\[code\]<body id="templateBody"> <div> <p>\[/code\]My CSS\[code\]body{ font-size: 76%}div{ font-size:11px}\[/code\]How do I specify a font size for p so that it is relative (%age) of the Body font size and not the fixed div font size? Is there anyway to override the div's fixed font size without changing the div's style? I tried using rem, but it does not work on IE8...