I'd never faced this kind of deal, so I'm figuring out how to do it. I bought a font called Core Sans C and it comes with a problem (I see it as a problem). At the bottom there's an extra space that it comes with the font (not added through CSS).
As you can see on the image, the button has more space on the bottom than on the top. I tried fixing it with CSS without success and I don't want to add more space on top to compensate the extra one below.
The HTML and CSS used on the image is the one below:
.example {
display: block;
margin-bottom: 20px;
font-family: "Core Sans C";
background: black;
border: 1px solid;
color: #ffffff;
font-size: 95px;
}
<button class="example">Hello</button>
(Of course I can't add the font because it is a payed one, but you can try going to the Core Sans C link I provided and then with inspect element create a button and see it by yourself)
Does anybody faced the same and has any idea on how to fix this?
Thanks.