Skip to content

文本大小写

定义

在 ZUI 中,你可以通过如下工具类来设置文本大小写显示规则:

工具类属性
uppercasetext-transform: uppercase;
lowercasetext-transform: lowercase;
capitalizetext-transform: capitalize;
normal-casetext-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.

MIT License (MIT)