CSS 中 letter-spacing 属性的用法

javascriptweb developmentfront end scripts

letter-spacing 属性用于在组成单词的字母之间添加或减少空格。可能的值是 normal 或指定空格的数字。

<html>
   <head>
   </head>
   <body>
      <p style = "letter-spacing:7px;">
         此文本的字母之间有空格。
      </p>
   </body>
</html>

相关文章