Check out this code snippet:
<h1><a href="">Windows App Store<br /><span class="smallSubText">applications</span></a></h1>
and here's the CSS styling:
#windowsStoreApplications {
float: right;
width: 50%;
font-size: 16pt;
text-align: center;
height: 182px;
background-color: #9DCA87;
border-top: 6px solid #AEDF66;
}
.smallSubText {
font-size: 16pt;
}
In the code, both h1 and span elements have the same font size set. However, when you view them on the site, they appear to be different sizes. It seems like there might be some weirdness with how the font sizes are rendered.
Could this discrepancy be related to a specific issue with the h1 element?