百度页面新鲜样式记录

1.text-transform 属性控制文本的大小写。

text-transform:none  默认。定义带有小写字母和大写字母的标准的文本。

text-transform:capitalize    文本中的每个单词以大写字母开头。

text-transform:uppercase  定义仅有大写字母。

text-transform:lowercase  定义无大写字母,仅有小写字母。

text-transform:inherit  规定应该从父元素继承 text-transform 属性的值。

注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。

JavaScript 语法:object.style.textTransform="uppercase"

(详情见W3Cschool)

原文地址:https://www.cnblogs.com/luoluo8/p/5177445.html