Font Smoothing
October 7, 2022
Here is how to get smooth like butter font on your websites.
Here is a stripped-down CSS reset code to start the front-end HTML layout. This is just for quick development; otherwise, feel free to use many great available full versions of modern CSS resets.
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-size: 62.5%;
}
Tags: