如何使用 CSS 设置文本的大小写?


使用 text-transform 属性设置文本的大小写。可能的值有:none、capitalize、uppercase、lowercase。

示例

您可以尝试运行以下代码,设置文本的大小写

<html>
   <head>
   </head>
   <body>
      <p style = "text-transform:capitalize;">
         This will be capitalized
      </p>

      <p style = "text-transform:uppercase;">
         This will be in uppercase
      </p>

      <p style = "text-transform:lowercase;">
         This will be in lowercase
      </p>
   </body>
</html>

更新于:2020-01-31

167 次浏览

开启你的 职业生涯

完成课程可获得认证

开始
广告