使用 CSS 将文本转换为小写

javascriptweb developmentfront end scripts

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

示例

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

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

相关文章