html 标签th中的英文字符是大写的,怎么让其显示为小写字母?

方法如下:

style="text-transform:lowercase;"

 

也就是

<th style="text-transform:lowercase;" width="12%">CPU占有时间(ms)</th>

 

详细解释如下:

===========================================================

text-transform版本:CSS1  兼容性:IE4+ NS4+ 继承性:有
语法:
text-transform : none | capitalize | uppercase | lowercase
取值:
none : 默认值。无转换发生
capitalize : 将每个单词的第一个字母转换成大写,其余无转换发生
uppercase : 转换成大写
lowercase : 转换成小写

说明:
检索或设置对象中的文本的大小写。
此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
对应的脚本特性为 textTransform 。
示例:
div { text-transform : uppercase; }

你可能感兴趣的:(html 标签th中的英文字符是大写的,怎么让其显示为小写字母?)