CSS通过text-transform实现大写、小写和首字母大写转换
2021-03-09 03:27
标签:strong 不同 cap block uppercase pre nsf one ase 再日常项目中可能会用到一些特殊的样式,比如大写字母转小写、小写字母转大写、首字母大写等。 可以通过 CSS 的 text-transform 属性来实现: 属性值: none 带有小写字母和大写字母的标准的文本(默认属性)。 capitalize 首字母大写。 uppercase 字母大写。 lowercase 字母小写。 inherit 从父元素继承。 示例: CSS通过text-transform实现大写、小写和首字母大写转换 标签:strong 不同 cap block uppercase pre nsf one ase 原文地址:https://www.cnblogs.com/ypppt/p/12868332.htmltext-transform 转换不同的文本
h1 {text-transform:uppercase}
h2 {text-transform:capitalize}
p {text-transform:lowercase}
下一篇:http超时请求设置
文章标题:CSS通过text-transform实现大写、小写和首字母大写转换
文章链接:http://soscw.com/index.php/essay/62099.html