CSS Text(文本)属性可定义文本的外观,比如文本的颜色、对齐文本装饰文本、文本缩进、行间距等。
2.1 color文本颜色
color: red;
color: #ffffff;
color: rgb(255,0,255)
2.2 text-align对齐文本
text-align:left;//左对齐(默认)
text-align: right;//右对齐
text-align: center;//居中对齐
2.3 text- decoration装饰文本
可以给文本添加下划线、删除线上划线等
text-decoration: underline
none默认。没有装饰线(最常用)
underline下划线。链接a自带下划线(常用)
overline上划线。(几乎不用)
line-through删除线。(不常用)
2.4 text-indent文本缩进
text-indent: 2em;//缩进两个字符大小
2.5 line-height行间距(行高)
上间距+字体大小+下间距=line-height(上一行字体底部到下一行地体底部间距离)
line-height: 26px;