CSS font-kerning 属性

王林
王林 转载
2023-08-29 21:37:02 606浏览

CSS font-kerning 属性

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

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

以上就是CSS font-kerning 属性的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:tutorialspoint,如有侵犯,请联系admin@php.cn删除