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:  

  • auto: It is the default value. The Browser decides whether font-kerning is applied or not.
  • normal: It is used to specify that font-kerning is applied normally on the browsers.
  • none: It is used to specify that font-kerning is not applied.

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

html




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


Output: 

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

  • Google Chrome 33.0
  • Edge 79.0
  • Firefox 32.0
  • Opera 20
  • Safari 9.0


Contact Us