I'm puzzled by a strange 1px gap on the left of my h2 heading, which sits atop an h3. The font sizes are set to 40px for h2 and 12px for h3. Can anyone help me solve this mystery?
Any assistance would be greatly appreciated!
Thank you
body {
padding: 0;
margin:0;
}
.section-heading-small {
font-size: 12px;
letter-spacing: 5px;
color: #a3a3a3;
font-weight: 500;
margin: 0;
}
.section-heading-main {
font-family: sans-serif;
font-size: 40px;
letter-spacing: -1px;
margin: 0;
text-transform: uppercase;
font-weight: 700;
}
<h3 class="section-heading-small">Small Heading</h3>
<h2 class="section-heading-main">Large Heading</h2>