用css进行网页布局

 第一部分

<style type="text/css">
      body{margin:0;padding:0}
      .top{height:100px;background:blue}
      .main{width:800px;height:300px;background:black;margin:0 auto}
      .foot{width:800px;height:100px;background:red;margin:0 auto}
</style>
<body>
     <div class="top"></div>
     <div class="main"></div>
     <div class="foot"></div>
</body>
    上面代码是网页的一列布局,其中有几个点和大家分享一下。

相关推荐