Font size adjust of an element with CSS



This property enables you to adjust the x-height to make fonts more legible. Possible value could be any number.

Example

<html>
   <head>
   </head>
   <body>
      <p style = "font-size-adjust:0.91;">
         Asia is a continent.
      </p>
   </body>
</html>

Advertisements