<DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<link rel="stylesheet" type="text/css" href="style/01_10_常见样式总结.css">
</head>
<body>
<div id="total">
1.width<br />2.height<br />3.border<br />4.background<hr />5.padding<br />6.margin<hr />7.font-family<br />8.font-size<br />9.color<hr />10.font-weight<br />11.font-style<br />12.text-decoration<hr />13.text-indent<br />14.letter-spacing<br />15.word-spacing<hr />16.text-align<br />17.line-height
</div>
</body>
</html>
#total{
width:200px;
height:400;
border:solid red 1px;
background:pink;
padding:10px 20px;
margin:0px auto;
font-family: Arial;
font-size: 16px;
color: blue;
text-indent: 2em;
letter-spacing: 1px;
word-spacing: 2em;
text-align: left;
line-height: 18px;
}