Open In App

CSS font-size-adjust Property

Last Updated : 09 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The font-size-adjust property in CSS is used to adjust the font size based on the height of lowercase rather than capital letters and gives better control of the font size. It is very useful when the text has given multiple styles and has adjusted the font while changing in between those styles.

Syntax:  

font-size-adjust: number|none|initial|inherit;

Default Value: none 

Property values: 

  • number: It sets the number to the font-size-adjust property.
  • none: It sets the default value.
  • initial: It sets the font-size-adjust property to its default value.
  • inherit: The font-size-adjust property is inherited from its parent.

Example: In this example, we are using the above-explained property.

html




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS font-size-adjust property
    </title>
 
    <style>
        .GFG1 {
            font-family: Times, serif;
        }
 
        .GFG2 {
            font-family: Verdana, sans-serif;
        }
 
        div {
            font-size-adjust: 0.58;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>
        CSS font-size-adjust property
    </h2>
    <p class="GFG1">
        GeeksforGeeks: A computer science
        portal for geeks
    </p>
    <p class="GFG2">
        GeeksforGeeks: A computer science
        portal for geeks
    </p>
</body>
</html>


Output: 

Supported Browsers: The browser supported by font-size-adjust property are listed below:  

  • Firefox 40.0 and above


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads