文本大小写
定义
在 ZUI 中,你可以通过如下工具类来设置文本大小写显示规则:
工具类 | 属性 |
---|---|
uppercase | text-transform: uppercase; |
lowercase | text-transform: lowercase; |
capitalize | text-transform: capitalize; |
normal-case | text-transform: none; |
示例
显示为大写 uppercase
The quick brown fox jumps over the lazy dog.
显示为小写 lowercase
The quick brown fox jumps over the lazy dog.
显示为单词首字母大写 capitalize
The quick brown fox jumps over the lazy dog.
默认大小写 normal-case
The quick brown fox jumps over the lazy dog.