使用CSS将文本转换为小写

要将文本通过CSS转换为小写,请使用 text-transform属性,其值为lowercase

示例

您可以尝试运行以下代码将文本转换为小写:

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