text-transform版本:CSS1 兼容性:IE4+ NS4+ 继承性:有
语法:
text-transform : none | capitalize | uppercase | lowercase
取值:
none | :� | 默认值。无转换发生 |
capitalize | :� | 将每个单词的第一个字母转换成大写,其余无转换发生 |
uppercase | :� | 转换成大写 |
lowercase | :� | 转换成小写 |
说明:
检索或设置对象中的文本的大小写。
此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
对应的脚本特性为 textTransform 。
此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
对应的脚本特性为 textTransform 。
示例:
div { text-transform : uppercase; }