文本颜色
color属性用于定义文本颜色
div {
color: red;
}
对齐文本
text-align 属性用于设置元素内文本内容的水平对齐方式
div {
text-align: center;
}
文本缩进
text-indent 用于段落首行缩进2个字的距离
div {
text-indent: 2em;
}
文本修饰
text-decoration 添加下划线 underline 取消下划线 none
div {
text-decoration: underline;
}
行高
line-height 控制行与行之间的距离
p {
line-height: 26px;
}