color

div {
    color: red;
}

text-align

text-align用于设置元素内文本内容的水平对齐方式

div {
    text-align: center;
    center 居中对齐
    left 左对齐
    right 右对齐
}

text-decoration

装饰文本
规定添加到文本的修饰,可以给文本添加下划线,删除线,上划线

属性值描述
none默认。没有装饰线
uderline下划线,链接a自带下划线
overline上划线
line-through删除线
div {
    text-decoration: underline line-through overline;
}
a {
    /*取消下划线*/
    text-decoration: none;
}

文本缩进

text-indent 属性用来指定文本第一行的缩进,通常是将段落的首行缩进

p {
    text-indent: 20px;
}
/*汉字缩进用下面这么写*/
p {
    text-indent: 2em;
}
/*em是一个相对单位,就是当前元素1个文字的大小,比方说,这个段落的文字大小是16px,那么1em就是16px,2em就是32px,这样就自然形成了咱们汉字的
首行缩进效果了*/

line-height

行间距就是文字上间距和下间距,文本高度之和

p {
    line-height: 26px;
}