text-transform 属性用于指定文本中的大写和小写字母
设定值:
text-transform:uppercase; 全部大写。
text-transform:lowercase;全部小写。
text-transform:capitalize; 首字母大写。
实例代码:
<!doctype html>
<html>
<head>
<style>
.p1{
text-transform:uppercase;
}
.p2{
text-transform:lowercase;
}
.p3{
text-transform:capitalize;
}
</style>
</head>
<body>
<h1>text-transform 属性实例</h1>
<p class="p1">This is some text <strong style="color:red">注:全部为大写</strong></p>
<p class="p2">This is some text <strong style="color:red">注:全部为小写</strong></p>
<p class="p3">This is some text <strong style="color:red">注:首字母为大写</strong></p>
</body>
</html>
运行效果:
评论