标签:
<!DOCTYPE html>
<html>
<head>
<title>单列布局</title>
<style type="text/css">
body{
margin: 0;padding: 0;
}
.header{
height: 100px;
width:800px;background: blue;
}
.main{
width: 800px;height: 300px;background: #ccc; margin: 0 auto;
}
.foot{
width: 800px;height: 100px;
background: #c00;margin: 0 auto;
}
</style>
</head>
<body>
<div class="header"></div>
<div class="main"></div>
<div class="foot"></div>
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/hugh0510/p/4551212.html