常用文本属性
aoday is a beautiful day !
spring is coming !
happy New Chinese Year !
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>常用文本属性</title>
<style>
#id1{
color: blue;
letter-spacing: 2px;
word-spacing: 5px;
text-transform: capitalize;
text-align: center;
text-decoration: line-through;
line-height: 20px;
}
#id2{
color: red;
text-align: left;
text-decoration: overline;
text-decoration: underline;
text-indent: 20px;
font-size: 20px;
}
</style>
</head>
<body>
<p id="id1">aoday is a beautiful day !</p>
<p id="id2">spring is coming !</p>
<p id="id3">happy New Chinese Year !</p>
</body>
</html>