使用 CSS 将文本转换为大写
要使用 CSS 将文本转换为大写,请使用值设为 uppercase 的 text-transform 属性。
举例
您可以尝试运行以下代码将文本转换为大写
<html> <head> </head> <body> <p>Normal Text</p> <p style = "text-transform:uppercase;"> Normal Text! This will be in uppercase! </p> </body> </html>
广告
要使用 CSS 将文本转换为大写,请使用值设为 uppercase 的 text-transform 属性。
您可以尝试运行以下代码将文本转换为大写
<html> <head> </head> <body> <p>Normal Text</p> <p style = "text-transform:uppercase;"> Normal Text! This will be in uppercase! </p> </body> </html>