日期:2014-05-17 浏览次数:20671 次
<html>
<head>
<style>
.container{ background: #aabbcc; width: 1000px; height: 1500px; margin: auto; }
.top{ background: #ccc; width: 900px; height: 150px; margin: auto; }
.nav{ background: #aaa; width: 900px; height: 100px; margin: auto; }
.main{ background: #bbb; width: 900px; height: 1000px; margin: auto; }
.footer{ background: #ddd; width: 900px; height: 150px; margin: auto; }
</style>
</head>
<body>
<div class="container">
<div class="top"></div>
<div class="nav"></div>
<div class="main"></div>
<div class="footer"></div>
</div>
</body>
</html>
<html>
<head>
<style>
.container{ background: #aabbcc; width: 1000px; height: 1500px; margin:0 auto; padding-top: 100px;padding-bottom: 100px}
.top{ background: #ccc; width: 900px; height: 150px; margin:0 auto; }
.nav{ background: #aaa; width: 900px; height: 100px; margin: 0 auto; }
.main{ background: #bbb; width: 900px; height: 1000px; margin:0 auto; }
.footer{ background: #ddd; width: 900px; height: 150px; margin:0 auto; }
</style>
</head>
<body>
<div class="container">
<div class="top"></div>
<div class="nav"></div>
<div class="main"></div>
<div class="footer"></div>
</div>
</body>
</html>