PHP前端开发

CSS font-kerning 属性

百变鹏仔 3个月前 (09-20) #CSS
文章标签 属性

使用 font-kerning 属性来控制字母在网页上的放置方式。您可以尝试运行以下代码来实现 font-kerning 属性

示例

Live Demo

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