|
Re: why h1 doesn't inherit font -size from body?
I belive its the way the browser handles the styles
You may be setting body to a cirtain text size like so
body { font-size: 100%; }
but default setting for h1 might be font-size: 18pt
Which would pretty much override your setting.
You would want to set font size for h1 as
h1 { font-size: 100%; }
|