<p></p>标签:一段话或者段落适宜于用p标签;
段落缩进:text-indent:50px;
文字方向:text-align:center居中、left往左显示、right往右显示;
文本装饰线:text-decoration:underline下划线、overline上划线、linethough贯穿线;
字之间的距离:letter-spacing:10px;
<style>
#test1{
background:red;
text-indent:20px;
letter-spacing:10px;
width:600px;
height:100px;
}
#test2{
background:pink;
text-align:left;
text-decoration:underline;
}
</style>
</head>
<body>
<p ></body>
css其他属性百度可得到。