1、To-upper-case()
To-upper-case() 函数将字符串小写字母转换成大写字母。如:
//SCSS .test { text: to-upper-case(aaaaa); text: to-upper-case(aA-aAAA-aaa); }
编译出来的 css 代码:
//CSS .test { text: AAAAA; text: AA-AAAA-AAA; }
2、To-lower-case()
To-lower-case() 函数 与 To-upper-case() 刚好相反,将字符串转换成小写字母:
//SCSS .test { text: to-lower-case(AAAAA); text: to-lower-case(aA-aAAA-aaa); }
编译出来的 css 代码:
//CSS .test { text: aaaaa; text: aa-aaaa-aaa; }