Open In App

CSS font-size-adjust Property

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: 



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




<!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:  


Article Tags :