text 文本属性
<!-- 设置文本的装饰线 -->
常见取值
text-decoration:none 没有任何装饰线(可用于去除a标签默认的下划线)
text-decoration:underline 下划线
text-decoration:overline 上划线
text-decoration:line-through 中划线 删除线
text-decoration
/* 无装饰线 */
text-decoration: none;
/* 下划线 */
text-decoration: underline;
/* 上划线 */
text-decoration: overline;
/* 通常用 border-top 添加上划线*/
/* 删除线 */
text-decoration: line-through;
text-transforme
/* 首字母大写 */
text-transform: capitalize;
/* 将所有字母大写 */
text-transform: uppercase;
/* 将每个单子变为小写 */
text-transform: lowercase;
/* 没有任何影响 */
text-transform: none;
text-indent:几个字符(em) 像素(px)
text-align属性<!-- ### 设置对齐方式 --- 相对于它的父元素对齐 -->
<!-- 基本使用 -->
text-align
/* 居中显示 */
text-align: center;
/* 左对齐 */
text-align: left;
/* 右对齐 */
text-align: right;
/* 两端对齐 */
text-align: justify;
设置字母或单词之间的间距
默认为0可以设置为复数
<!-- 字母之间的间距 -->
letter-spacing
<!-- 单词之间的间距 -->
word-spacing
标签:##,text,align,划线,transform,decoration,文本属性
From: https://www.cnblogs.com/hdc-web/p/18486607