<!DOCTYPE html>
<html>
<head>
<title>CSS font-size-adjust property</title>
<style>
.one {
font-family: Arial;
font-size: 20px;
}
.two {
font-family: Verdana;
font-size: 20px;
}
.one, .two {
font-size-adjust: 0.74;
}
</style>
</head>
<body>
<p class="one">This text is represent font-size-adjust property.</p>
<p class="two">This text is represent font-size-adjust property.</p>
</body>
</html>