The font-size-adjust property gives you better control of the font size when the first selected font is not available.
Example of Code
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of CSS3 font-size-adjust Property</title>
<style type="text/css">
p {
font-family: "DejaVu Sans", Arial, sans-serif;
font-size-adjust: 0.6;
}
</style>
</head>
<body>
<p>This is a paragraph.</p>
<p><strong>Warning:</strong> The font-size-adjust property is only supported in Firefox. You should better avoid using this property.</p>
</body>
</html>
Output
Example of CSS3 font-size-adjust Property This is a paragraph.
Warning: The font-size-adjust property is only supported in Firefox. You should better avoid using this property.
