CSS文本属性
2021-03-02 20:29
标签:text 行高 enc 删除线 loaded col nbsp under 默认 CSS Text(文本)属性可定义文本的外观,比如文本的颜色、对齐文本装饰文本、文本缩进、行间距等。 可以给文本添加下划线、删除线上划线等 CSS文本属性 标签:text 行高 enc 删除线 loaded col nbsp under 默认 原文地址:https://www.cnblogs.com/zhif97/p/14317661.html2. CSS文本属性
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;