Control how letters are spaced in CSS



Use the font-kerning property to control how letters placed on a web page. You can try to run the following code to implement the font-kerning property

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         #demo {
            font-kerning: normal;
         }
      </style>
   </head>
   <body>
      <div class = "demo">This is demo text.</div>
   </body>
</html>
Updated on: 2020-06-25T09:25:34+05:30

112 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements