I have simple p tag having heading I have set the font-size to paragraph tag however when I set the font-size to heading tag in terms of em unit, the changes are not getting reflected for em
p {
font-size: 32px;
}
h2 {
font-size: 2em;
}
<p>Heading<h2>SubHeading</h2></p>
However when I change paragraph to div em font size works correctly. like below
div {
font-size: 32px;
}
h2 {
font-size: 2em;
}
<div>Heading<h2>SubHeading</h2></div>
Why it is behaving like this ?