示例
<html>
<head>
<meta charset="utf-8">
<title>文本相关样式</title>
<style>
.first{
color:green;/*文本颜色*/
text-align:center;/*文本居中*/
/* text-align:left; *//*文本居左,默认*/
/* text-align:right; *//*文本居右*/
}
.second{
text-indent:40px; /*首行缩进*/
border:1px solid #000;
line-height:100px;/*行高*/
/* text-decoration:none; *//*文本装饰,none默认值没有装饰*/
text-decoration:underline;/*文本装饰为下划线*/
}
.third{
color:rgb(255,0,0);
}
</style>
</head>
<body>
<p class="first">贾重阳是个阳光男孩</p>
<p class="second">贾重阳是个阳光男孩</p>
<p class="third">贾重阳是个阳光男孩</p>
</body>
</html>