CSS中text-transform属性的用法
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>