gregory

css中一些文本属性的用法

孤街浪徒 提交于 2019-12-05 13:56:53
代码 /* text-transform用法 */ .p1 { /* 默认值 */ text-transform: none; } .p2 { /* 每个单词的首字母大写 */ text-transform: capitalize; } .p3 { /* 全部转换为大写字母 */ text-transform: uppercase; } .p4 { /* 全部转换为小写字母 */ text-transform: lowercase; } /* text-decoration用法 */ .p5 { /* 默认值 */ text-decoration: none; } .p6 { /* 下划线 */ text-decoration: underline; } .p7 { /* 上划线 */ text-decoration: overline; } .p8 { /* 穿越文本中间的线 */ text-decoration: line-through; } .p9 { /* 去除超链接自带的下划线 */ text-decoration: none; } /* letter-spacing用法 */ .p10 { /* 默认值 */ letter-spacing: normal; } .p11 { /* 设置字符间距为10px */ letter-spacing: 10px; } .p12