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

使用 text-transform属性设置文本的大小写。可能的值是none,大写,大写,小写。

示例

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

<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>