1)控制字符的间距:
<head> ???<style type="text/css"> ????body {letter-spacing:0.5px}</style>字符间距0.5
2)控制字符之间的行高
<head> ???<style type="text/css"> ????body {line-height:100%}</style>行高100%一般其他网页的行高为110%
1,这里也可以用像素设置行高,20px是其他网页的标准
2,页可以用数值表示,1是其他网页的标准
3)文本格式:居中,据左边\右边
<style type="text/css">p {text-align:conter}<style>
4)文本的修饰--加划线
<style type="text/css">p {text-decoration:underline}<style>
1,显示的是文字下面加一行下划线
2,overline 在顶上上下划线
3,line-through 一条线贯穿文本
5)文本的首行缩进
<style type="text/css">p {text-indent:1cm}</style>
6)字母的控制
<style type="text/css">p {text-transform:uppcase}<style>1,p字段里的字母全部大写2,lowercase全部小写3,capitalize首字母大写
7)增加单词之间的距离
<style type="text/css">p {word-spacing:30px}<style>
css文本类型操作
原文地址:http://www.cnblogs.com/52forjie/p/7554036.html