精彩专题推荐:建站之入门课 建站之必修课 建站之关键课 网站价值所在 流量提高专题 css+div 标准 个人网站打造全过程
返回建站学首页
导航:
建站首页 | 网站设计 | 网站开发 | 网站运营 | 网页软件 | 建站指南 | 搜索优化 | 图像处理 | 视频教程 | 书籍教程 | 建站专题
当前位置:首页>网站设计>网页布局>正文

DIV+CSS网页布局常用的方法与技巧


来源: 时间:07-04-18 点击: 点击这里收藏本文
  三行两列
  Example Source Code

  #header{width:700px;margin-right:auto;margin-left:auto;}
  #bodycenter{width:700px;margin-right:auto;margin-left:auto;}
  #bodycenter#dv1{float:left;width:280px;}
  #bodycenter#dv2{float:right;width:420px;}
  #footer{width:700px;margin-right:auto;margin-left:auto;overflow:auto;clear:both;}

  单行三列
  绝对定位

  Example Source Code

  #left{position:absolute;top:0px;left:0px;width:120px;}
  #middle{margin:0px190px0px190px;}
  #right{position:absolute;top:0px;right:0px;width:120px;}

  float定位
  xhtml代码:
  Example Source Code

  <div id="wrap">
  <div id="column">
  <div id="column1">这里是第一列</div>
  <div id="column2">这里是第二列</div>
  <div class="clear"></div>/*用法web标准不建议,但是记住下面元素需要清除浮动*/
  </div>
  <divid="column3">这里是第三列</div>
  <divclass="clear"></div>/*用法web标准不建议,但是记住下面元素需要清除浮动*/
  </div>



  CSS代码:
  Example Source Code

  #wrap{width:100;height:auto;}
  #column{float:left;width:60;}
  #column1{float:left;width:30;}
  #column2{float:right;width:30;}
  #column3{float:right;width:40;}
  .clear{clear:both;}

  float定位

  xhtml代码
  Example Source Code

  <div id="center"class="column">
  <h1>Thisisthemaincontent.</h1>
  </div>
  <div id="left"class="column">
  <h2>Thisistheleftsidebar.</h2>
  </div>
  <div id="right"class="column">
  <h2>Thisistherightsidebar.</h2>
  </div>

  CSS代码:
  Example Source Code

  body{
  margin:0;
  padding-left:200px;/*LCfullwidth*/
  padding-right:190px;/*RCfullwidth CCpadding*/
  min-width:200px;/*LCfullwidth CCpadding*/
  }
  .column{
  position:relative;
  float:left;
  }
  #center{
  width:100;
  }
  #left{
  width:200px;/*LCwidth*/
  right:200px;/*LCfullwidth*/
  margin-left:-100;
  }
  #right{
  width:190px;/*RCwidth*/
  margin-right:-100;
  }

9 7 3 1 2 4 8 :

  把此文章收藏到:          
广而告之
文章搜索
  • Google JZxue.Com

关于我们 | 联系我们 | 友情链接 | 网站地图
Copyright © 2005 - 2006 建站学 All rights reserved.