Within my CSS styles, I have defined a selector for the body tag to establish an overall font-size of 1.5em. Specifically, the initial two words in the html section are formatted with a class that sets the font-size to 1.3em. The remaining text lacks any explicit font-size specifications.
body {
font-family: "Times New Roman", Times, georgia, serif;
font-size:1.5em;
line-height: 1.3em;
}
.pathlink {
font-size: 1.3em;
}
<p><span class="pathlink">Start Page</span>Copyright © 2023</p>
My assumption was that the first two words would appear smaller (1.3em) compared to the subsequent text (1.5em). However, upon viewing in a browser, the initial two words seem noticeably larger than the rest of the text. What could be the error in my approach?