x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
.center {
7
margin: auto;
8
width: 70%;
9
background-color: #b0e0e6;
10
}
11
</style>
12
</head>
13
14
<body>
15
<div class="center">
16
<p>In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.</p>
17
<p>'Whenever you feel like criticizing anyone,' he told me, 'just remember that all the people in this world haven't had the advantages that you've had.'</p>
18
</div>
19
<p><b>注意: </b>使用 margin:auto 无法兼容 IE8, 除非 !DOCTYPE 已经声明.</p>
20
</body>
21
</html>