文字排版-字体
body{
font-family:"宋体";
}字号、颜色
body{
font-size:10px;
color:#666;
}注意没有引号
粗体
body{
font-weight:bold;
}斜体
body{
font-style:italic;
}下划线
p{
text-decoration:underline;删除线
span{
text-decoration:line-through;
}缩进
p{text-indent:2em;}行间距(行高)
p{line-height:1.5em;}中文字间距、字母间距
h1{
    letter-spacing:50px;            /*设置文字间隔或者字母间隔*/
}
h1{
    word-spacing:50px;             /*设置字母与字母之间的间距*/
}对齐
h1{
  text-align:center;
 text-align:left;
 text-align:right;
}
热门评论
- 
			
				北执22016-04-01 0 
 
 
- 
			
				赞果果2016-03-26 0 
 
 
- 
			
				慕粉23561872016-03-25 0 
 
 
查看全部评论这是不是css?
!
这是html5吗