标签:
1、控制字体
指定字体
font-family:value1,value2;
字体大小
font-size:value;
字体加粗
font-weight:normal/bold;
p{
font-family:Times,‘NEW York‘,serif;
font-size:14pt;
font-weight:bold;
}
2、控制文本格式
文本颜色
color:value;
文本排列
text-align:left/right/center;
文本修饰
text-decoration:none/underline;
行高
line-height:value;
首行文本缩进
text-indent:value;
标签:
原文地址:http://www.cnblogs.com/Crow00/p/4546159.html