5.26
今天学习了css的水平对齐.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<style>
.center
{
margin:auto;
width:70%;
}
</style>
</head>
<body>
<div class="center">
<p>在我年轻、脆弱的时候,父亲给了我一些建议,我一直铭记在心.</p>
<p>他对我说,每当你想要批评别人的时候,你就记住,这个世界上的人并不是所有人都有过你拥有的那些优越条件。</p>
</div>
<p><b>注意: </b>使用 margin:auto无法兼容 IE8, 除非!DOCTYPE已经声明.</p>
</body>
</html>