The font-size-adjust property gives you better control of the font size when the first selected font is not available.
Example of Code
<style type="text/css">
.example-css-font-size-adjust-paragraph{
font-family: "DejaVu Sans", Arial, sans-serif;
font-size-adjust: 0.6;
}
</style>
<p class="example-css-font-size-adjust-paragraph">This is a paragraph.</p>
Output
This is a paragraph.
