color文字颜色
color: pink;
text-align对齐
text-align: left(right, center);
div默认宽度=100%,文本可以对齐
span默认宽度=文本的宽度
文本已经定在其边框上了,对齐是看不出来效果的。
text-decoration文本修饰
text-decoration: overline;上划线
text-decoration: line-through;删除效果
text-decoration: underline;下划线
text-decoration: blink;大部分浏览器已经取消闪烁效果
text-decoration: none;可以去掉超链的下划线
line-height行间距
数字或者百分比
默认行间距
默认行间距
200%行间距
200%行间距
letter-spacing字符间距
数字
word-spacing单词间距
数字
默认:abcdefg abcdefg abcdefg
效果:a b c d e f g a b c d e f g
text-indent首行缩进
数字
默认:abcdefg abcdefg abcdefg
效果:abcdefg abcdefg
text-transform大小写
text-transform: uppercase;
text-transform: capitalize;
text-transform: lowercase;
空白格white-space
white-space: normal;
white-space: pre;
white-space: pre-wrap;
white-space: nowrap;
原文:https://www.cnblogs.com/heyan/p/12682622.html