ใช้คุณสมบัติปรับขนาดฟอนต์เพื่อรักษาความสามารถในการอ่านเมื่อเกิดการย้อนกลับของฟอนต์ คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้คุณสมบัติ font-size-adjust
ตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<style>
#demo {
font-size-adjust: 0.90;
}
</style>
</head>
<body>
<h2>Heading Two</h2>
<h2>With font-size-adjust property:</h2>
<div class = "demo">
This is demo text.
</div>
<h2>Without font-size-adjust property:</h2>
<div>This is demo text.</div>
</body>
</html>