使用 CSS 将文本转换为大写

javascriptweb developmentfront end scripts

要使用 CSS 将文本转换为大写,请使用 text-transform 属性,值为 uppercase

示例

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

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

相关文章