CSS---文本属性
color:red; --- 字体颜色,light blue(浅蓝),deep gray(深灰);
font-size:14px; --- 字体大小;
font-family:隶书; --- 文本字体,默认是隶书,字体有 SimSun,Aril;
font-style:inherit; --- 字体是否倾斜,italic(倾斜),normal(正常);
font-weight:bold; --- 文本是否加粗,bold(加粗),normal(正常);
text-decoration:underline; --- 文本是否有修饰线,underline(下划线),overline(上划线),line-through(删除线),none(无修饰线);
text-indent:2em; --- 首行缩进2个汉字,单位是em;
letter-spacing:2px; --- 英文字母与字母之间的距离;
word-spacing:2px; --- 英文单词与单词之间的距离;
vertical-align:middle; --- 文本的上下对齐方式,top(顶对齐),middle(居中),bottom(底对齐);
text-align:center; --- 文本的左右对齐方式,left(左对齐),center(居中),right(右对齐);
line-height:30px; --- 行与行之间的距离,也可表示为 line-height:150%;