Computer >> Computer tutorials >  >> Programming >> CSS

CSS font-kerning Property


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

<!DOCTYPE html>
<html>
   <head>
      <style>
         #demo {
            font-kerning: normal;
         }
      </style>
   </head>
   <body>
      <div class = "demo">This is demo text.</div>
   </body>
</html>