Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

CSS font-size-adjust คุณสมบัติ


ใช้ font-size-adjus t คุณสมบัติเพื่อรักษาความสามารถในการอ่านเมื่อเกิดทางเลือกแบบอักษร คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้คุณสมบัติ 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>