Open In App

CSS font-kerning Property

This property is used to control the usage of the Kerning Information that has been stored in the Font. Kerning defines how letters are spaced. This property will have no visible effect on those fonts that do not have kerning information.

Syntax:  



font-kerning: auto|normal|none;

Default Value: auto 

Property:  



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




<!DOCTYPE html>
<html>
 
<head>
    <title>
        CSS | font-kerning Property
    </title>
    <style>
        div {
            font-family: serif;
            font-size: 20px;
            font-weight: bold;
        }
 
        div.geeks {
            font-kerning: normal;
        }
 
        div.SUDO {
            font-kerning: auto;
        }
 
        div.gfg {
            font-Kerning: none;
        }
 
        h1 {
            color: green;
        }
 
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>The font-kerning Property</h2>
    <h3>font-kerning:normal;</h3>
    <div class="geeks">
        GeeksforGeeks:
        A computer science portal for Geeks
    </div>
    <h3>font-kerning:auto;</h3>
    <div class="sudo">
        GeeksforGeeks:
        A computer science portal for Geeks</div>
    <h3>font-Kerning:none;</h3>
    <div class="gfg">
        GeeksforGeeks:
        A computer science portal for Geeks
    </div>
</body>
 
</html>

Output: 

Supported Browsers: The browsers supported by CSS | font-kerning Property are listed below:  


Article Tags :