When using the code below, the text Hello 7432832 KB
is displayed with the letters appearing larger than the digits by a few pixels. However, this issue does not occur when viewing it in Google Fonts:
Here's the code:
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);
body {
font-family: "Source Sans Pro";
font-weight: normal;
font-style: normal;
font-variant: normal;
}
<body>Hello 7432832 KB</body>
Any thoughts on how to fix this issue?