一、单列布局

常见的单列布局有两种:

  • header,content 和 footer 等宽的单列布局

  • header 与 footer 等宽,content 略窄的单列布局

1.如何实现

对于第一种,先通过对 header,content,footer 统一设置 width:1000px;或者 max-width:1000px(这两者的区别是当屏幕小于 1000px 时,前者会出现滚动条,后者则不会,显示出实际宽度);然后设置 margin:auto 实现居中即可得到。

<div class="header"></div> <div class="content"></div> <div class="footer"></div> .header{  margin:0 auto;  max-width: 960px;  height:100px;  background-color: blue; } .content{  margin: 0 auto;  max-width: 960px;  height: 400px;  background-color: aquamarine; } .footer{  margin: 0 auto;  max-width: 960px;  height: 100px;  background-color: aqua; } 

对于第二种,header、footer 的内容宽度不设置,块级元素充满整个屏幕,但 header、content 和 footer 的内容区设置同一个 width,并通过 margin:auto 实现居中。

<div class="header">  <div class="nav"></div> </div> <div class="content"></div> <div class="footer"></div> .header{  margin:0 auto;  max-width: 960px;  height:100px;  background-color: blue; } .nav{  margin: 0 auto;  max-width: 800px;  background-color: darkgray;  height: 50px; } .content{  margin: 0 auto;  max-width: 800px;  height: 400px;  background-color: aquamarine; } .footer{  margin: 0 auto;  max-width: 960px;  height: 100px;  background-color: aqua; } 

二、两列自适应布局

两列自适应布局是指一列由内容撑开,另一列撑满剩余宽度的布局方式

1.float+overflow:hidden

如果是普通的两列布局, 浮动+普通元素的 margin 便可以实现,但如果是自适应的两列布局,利用 float+overflow:hidden 便可以实现,这种办法主要通过 overflow 触发 BFC,而 BFC 不会重叠浮动元素。由于设置 overflow:hidden 并不会触发 IE6-浏览器的 haslayout 属性,所以需要设置 zoom:1 来兼容 IE6-浏览器。具体代码如下:

<div class="parent" style="background-color: lightgrey;">  <div class="left" style="background-color: lightblue;">  <p>left</p>  </div>  <div class="right" style="background-color: lightgreen;">  <p>right</p>  <p>right</p>  </div> </div> .parent { overflow: hidden; zoom: 1; } .left { float: left; margin-right: 20px; } .right { overflow: hidden; zoom: 1; } 

注意点:如果侧边栏在右边时,注意渲染顺序。即在 HTML 中,先写侧边栏后写主内容

2.Flexbox 布局

Flexbox 布局,也叫弹性盒子布局,区区简单几行代码就可以实现各种页面的的布局。

//html部分同上 .parent { display:flex; } .right { margin-left:20px; flex:1; } 

3.Grid 布局

Grid 布局,是一个基于网格的二维布局系统,目的是用来优化用户界面设计。

//html部分同上 .parent { display:grid; grid-template-columns:auto 1fr; grid-gap:20px } 

三、三栏布局

特征:中间列自适应宽度,旁边两侧固定宽度 ,实现三栏布局有多种方式:

1.浮动布局

<!DOCTYPE html> <html> <head>  <meta charset="utf-8">  <title>Layout</title>  <style media="screen">  html * {  padding: 0;  margin: 0;  }  .layout article div {  min-height: 150px;  }  </style> </head> <body>  <!--浮动布局 -->  <section class="layout float">  <style media="screen">  .layout.float . left {  float: left;  width: 300px;  background: red;  }  .layout.float .center {  background: yellow;  }  .layout.float . right {  float: right;  width: 300px;  background: blue;  }  </style>  <h1>三栏布局</h1>  <article class="left-right-center">  <div class="left"></div>  <div class="right"></div> // 右栏部分要写在中间内容之前  <div class="center">  <h2>浮动解决方案</h2>  1.这是三栏布局的浮动解决方案; 2.这是三栏布局的浮动解决方案; 3.这是三栏布局的浮动解决方案; 4.这是三栏布局的浮动解决方案; 5.这是三栏布局的浮动解决方案; 6.这是三栏布局的浮动解决方案;  </div>  </article>  </section> </body> </html> 

这种布局方式,dom 结构必须是先写浮动部分,然后再中间块,否则右浮动块会掉到下一行。浮动布局的优点就是比较简单,兼容性也比较好。但浮动布局是有局限性的,浮动元素脱离文档流,要做清除浮动,这个处理不好的话,会带来很多问题,比如父容器高度塌陷等 。

2.绝对定位布局

<!--绝对布局 -->  <section class="layout absolute">  <style>  .layout.absolute . left-center- right>div{  position: absolute;//三块都是绝对定位  }  .layout.absolute . left {  left:0;  width: 300px;  background: red;  }  .layout.absolute .center {  right: 300px;  left: 300px;//离左右各三百  background: yellow;  }  .layout.absolute . right {  right: 0;  width: 300px;  background: blue;  }  </style>  <h1>三栏布局</h1>  <article class="left-center-right">  <div class="left"></div>  <div class="center">  <h2>绝对定位解决方案</h2>  1.这是三栏布局的浮动解决方案; 2.这是三栏布局的浮动解决方案; 3.这是三栏布局的浮动解决方案; 4.这是三栏布局的浮动解决方案; 5.这是三栏布局的浮动解决方案; 6.这是三栏布局的浮动解决方案;  </div>  <div class="right"></div>  </article>  </section> 

绝对定位布局优点就是快捷,设置很方便,而且也不容易出问题。缺点就是,容器脱离了文档流,后代元素也脱离了文档流,高度未知的时候,会有问题,这就导致了这种方法的有效性和可使用性是比较差的。

3.flexbox 布局

<!--flexbox布局-->  <section class="layout flexbox">  <style>  .layout.flexbox .left-center- right{  display: flex;  }  .layout.flexbox .left {  width: 300px;  background: red;  }  .layout.flexbox .center {  background: yellow;  flex: 1;  }  .layout.flexbox .right {  width: 300px;  background: blue;  }  </style>  <h1>三栏布局</h1>  <article class="left-center-right">  <div class="left"></div>  <div class="center">  <h2>flexbox解决方案</h2>  1.这是三栏布局的浮动解决方案; 2.这是三栏布局的浮动解决方案; 3.这是三栏布局的浮动解决方案; 4.这是三栏布局的浮动解决方案; 5.这是三栏布局的浮动解决方案; 6.这是三栏布局的浮动解决方案;  </div>  <div class="right"></div>  </article>  </section> 

flexbox 布局是 css3 里新出的一个,它就是为了解决上述两种方式的不足出现的,是比较完美的一个。目前移动端的布局也都是用 flexbox。 flexbox 的缺点就是 IE10 开始支持,但是 IE10 的是-ms 形式的。

4.表格布局

<!--表格布局-->  <section class="layout table">  <style>  .layout.table . left-center- right {  display: table;  height: 150px;  width: 100%;  }  .layout.table . left-center- right>div {  display: table-cell;  }  .layout.table . left {  width: 300px;  background: red;  }  .layout.table .center {  background: yellow;  }  .layout.table . right {  width: 300px;  background: blue;  }  </style>  <h1>三栏布局</h1>  <article class="left-center-right">  <div class="left"></div>  <div class="center">  <h2>表格布局解决方案</h2>  1.这是三栏布局的浮动解决方案; 2.这是三栏布局的浮动解决方案; 3.这是三栏布局的浮动解决方案; 4.这是三栏布局的浮动解决方案; 5.这是三栏布局的浮动解决方案; 6.这是三栏布局的浮动解决方案;  </div>  <div class="right"></div>  </article>  </section> 

表格布局的兼容性很好,在 flex 布局不兼容的时候,可以尝试表格布局。当内容溢出时会自动撑开父元素 。

表格布局也是有缺陷:① 无法设置栏边距;② 对 seo 不友好;③ 当其中一个单元格高度超出的时候,两侧的单元格也是会跟着一起变高的,然而有时候这并不是我们想要的效果。

5.网格布局

<!--网格布局--> <section class="layout grid">  <style>  .layout.grid .left-center- right {  display: grid;  width: 100%;  grid-template-columns: 300px auto 300px;  grid-template-rows: 150px;//行高  }  .layout.grid .left {  background: red;  }  .layout.grid .center {  background: yellow;  }  .layout.grid .right {  background: blue;  }  </style>  <h1>三栏布局</h1>  <article class="left-center-right">  <div class="left"></div>  <div class="center">  <h2>网格布局解决方案</h2>  1.这是三栏布局的浮动解决方案; 2.这是三栏布局的浮动解决方案; 3.这是三栏布局的浮动解决方案; 4.这是三栏布局的浮动解决方案; 5.这是三栏布局的浮动解决方案; 6.这是三栏布局的浮动解决方案;  </div>  <div class="right"></div>  </article> </section> 

CSS Grid 是创建网格布局最强大和最简单的工具。就像表格一样,网格布局可以让 Web 设计师根据元素按列或行对齐排列,但他和表格不同,网格布局没有内容结构,从而使各种布局不可能与表格一样。例如,一个网格布局中的子元素都可以定位自己的位置,这样他们可以重叠和类似元素定位 。

但网格布局的兼容性不好。IE10+上支持,而且也仅支持部分属性 。

6.圣杯布局

① 特点

比较特殊的三栏布局,同样也是两边固定宽度,中间自适应,唯一区别是 dom 结构必须是先写中间列部分,这样实现中间列可以优先加载 。

.container {  padding-left: 220px;//为左右栏腾出空间  padding-right: 220px; } .left {  float: left;  width: 200px;  height: 400px;  background: red;  margin-left: -100%;  position: relative;  left: -220px; } .center {  float: left;  width: 100%;  height: 500px;  background: yellow; } .right {  float: left;  width: 200px;  height: 400px;  background: blue;  margin-left: -200px;  position: relative;  right: -220px; } <article class="container">  <div class="center">  <h2>圣杯布局</h2>  </div>  <div class="left"></div>  <div class="right"></div> </article> 

② 实现步骤

  • 三个部分都设定为左浮动, 否则左右两边内容上不去,就不可能与中间列同一行 。然后设置 center 的宽度为 100%( 实现中间列内容自适应 ),此时,left 和 right 部分会跳到下一行

  • 通过设置 margin-left 为负值让 left 和 right 部分回到与 center 部分同一行

  • 通过设置父容器的 padding-left 和 padding-right,让左右两边留出间隙。

  • 通过设置相对定位,让 left 和 right 部分移动到两边。

③ 缺点

  • center 部分的最小宽度不能小于 left 部分的宽度,否则会 left 部分掉到下一行

  • 如果其中一列内容高度拉长(如下图),其他两列的背景并不会自动填充。(借助等高布局正padding+负margin可解决,下文会介绍)

7.双飞翼布局

① 特点

同样也是三栏布局,在圣杯布局基础上进一步优化,解决了圣杯布局错乱问题,实现了内容与布局的分离。而且任何一栏都可以是最高栏,不会出问题 。

.container {  min-width: 600px;//确保中间内容可以显示出来,两倍 left宽+ right宽 } .left {  float: left;  width: 200px;  height: 400px;  background: red;  margin-left: -100%; } .center {  float: left;  width: 100%;  height: 500px;  background: yellow; } .center .inner {  margin: 0 200px; //新增部分 } .right {  float: left;  width: 200px;  height: 400px;  background: blue;  margin-left: -200px; } <article class="container">  <div class="center">  <div class="inner">双飞翼布局</div>  </div>  <div class="left"></div>  <div class="right"></div> </article> 

② 实现步骤(前两步与圣杯布局一样)

  • 三个部分都设定为左浮动,然后设置 center 的宽度为 100%,此时,left 和 right 部分会跳到下一行;

  • 通过设置 margin-left 为负值让 left 和 right 部分回到与 center 部分同一行;

  • center 部分增加一个内层 div,并设 margin: 0 200px;

③ 缺点

多加一层 dom 树节点,增加渲染树生成的计算量 。

④ 圣杯布局和双飞翼布局实现方式对比:

  • 两种布局方式都是把主列放在文档流最前面,使主列优先加载。

  • 两种布局方式在实现上也有相同之处,都是让三列浮动,然后通过负外边距形成三列布局。

  • 两种布局方式的不同之处在于如何处理中间主列的位置: 圣杯布局是利用父容器的左、右内边距+两个从列相对定位 ; 双飞翼布局是把主列嵌套在一个新的父级块中利用主列的左、右外边距进行布局调整

四、等高列布局

等高布局是指子元素在父元素中高度相等的布局方式。等高布局的实现包括伪等高和真等高,伪等高只是看上去等高而已,真等高是实实在在的等高。

1.利用背景图片

这种方法是我们实现等高列最早使用的一种方法,就是使用背景图片,在列的父元素上使用这个背景图进行Y轴的铺放,从而实现一种等高列的假象。实现方法简单,兼容性强,不需要太多的css样式就可以轻松实现,但此方法不适合流体布局等高列的布局。

在制作样式之前需要一张类似下面的背景图:

<div class=”container clearfix”>  <div class=”left”></div>  <div class=”content”></div>  <div class=”right”></div> </div> .container { background: url("column.png") repeat-y; width: 960px; margin: 0 auto; } .left { float: left; width: 220px; } .content { float: left; width: 480px; } .right { float: left; width: 220px; } 

2.利用正padding+负margin

我们通过等布局便可解决圣杯布局的第二点缺点,因为背景是在 padding 区域显示的, 设置一个大数值的 padding-bottom,再设置相同数值的负的 margin-bottom,并在所有列外面加上一个容器,并设置 overflow:hidden 把溢出背景切掉 。这种可能实现多列等高布局,并且也能实现列与列之间分隔线效果,结构简单,兼容所有浏览器。新增代码如下:

.center,  .left,  .right {  padding-bottom: 10000px;  margin-bottom: -10000px;  }  .container {  padding-left: 220px;  padding-right: 220px;  overflow: hidden;//把溢出背景切掉  } 

3.模仿表格布局

这是一种非常简单,易于实现的方法。不过兼容性不好,在ie6-7无法正常运行。

 <div class="container table">  <div class="containerInner tableRow">  <div class="column tableCell cell1">  <div class="left aside">  ....  </div>  </div>  <div class="column tableCell cell2">  <div class="content section">  ...  </div>  </div>  <div class="column tableCell cell3">  <div class="right aside">  ...  </div>  </div>  </div>  </div> .table { width: auto; min-width: 1000px; margin: 0 auto; padding: 0; display: table; } .tableRow { display: table-row; } .tableCell { display: table-cell; width: 33%; } .cell1 { background: #f00; height: 800px; } .cell2 { background: #0f0; } .cell3 { background: #00f; } 

4.使用边框和定位

这种方法是使用边框和绝对定位来实现一个假的高度相等列的效果。结构简单,兼容各浏览器,容易掌握。假设你需要实现一个两列等高布局,侧栏高度要和主内容高度相等。

#wrapper { width: 960px; margin: 0 auto; } #mainContent { border-right: 220px solid #dfdfdf; position: absolute; width: 740px; height: 800px; background: green; } #sidebar { background: #dfdfdf; margin-left: 740px; position: absolute; height: 800px; width: 220px; } <div id="wrapper">  <div id="mainContent">...</div>  <div id="sidebar">...</div> </div> 

五、粘连布局

1.特点

  • 有一块内容 <main> ,当 <main> 的高康足够长的时候,紧跟在 <main> 后面的元素 <footer> 会跟在 <main> 元素的后面。

  • 当 <main> 元素比较短的时候(比如小于屏幕的高度),我们期望这个 <footer> 元素能够“粘连”在屏幕的底部

具体代码如下:

main

main

main

footer

* {  margin: 0;  padding: 0;  }  html,  body {  height: 100%;//高度一层层继承下来  }  #wrap {  min-height: 100%;  background: pink;  text-align: center;  overflow: hidden;  }  #wrap .main {  padding-bottom: 50px;  }  #footer {  height: 50px;  line-height: 50px;  background: deeppink;  text-align: center;  margin-top: -50px;  } 

2.实现步骤

(1)footer 必须是一个独立的结构,与 wrap 没有任何嵌套关系

(2)wrap 区域的高度通过设置 min-height,变为视口高度

(3)footer 要使用 margin 为负来确定自己的位置

(4)在 main 区域需要设置 padding-bottom。这也是为了防止负 margin 导致 footer 覆盖任何实际内容。

一文详解CSS常见的五大布局相关推荐

  1. Python-Matplotlib可视化(1)——一文详解常见统计图的绘制

    Python-Matplotlib可视化(1)--一文详解常见统计图的绘制 matplotlib库 曲线图 曲线图的绘制 结合Numpy库,绘制曲线图 绘制多曲线图 读取数据文件绘制曲线图 散点图 条 ...

  2. android WebView详解,常见漏洞详解和安全源码(上)

    这篇博客主要来介绍 WebView 的相关使用方法,常见的几个漏洞,开发中可能遇到的坑和最后解决相应漏洞的源码,以及针对该源码的解析.  由于博客内容长度,这次将分为上下两篇,上篇详解 WebView ...

  3. 详解CSS float属性

    转自:http://luopq.com/2015/11/08/CSS-float/ \详解CSS float属性 Posted on 2015-11-08   |   In CSS   |   5条评 ...

  4. 详解 CSS position定位的五种方式

    position 属性规定应用于元素的定位方法的类型(static.relative.fixed.absolute 或 sticky). 常见的固定定位,例如手机端的导航,快捷按钮.例如本站的&quo ...

  5. inline-block是html5,详解CSS display:inline-block的应用

    本文详细描述了display:inline-block的基础知识,产生的问题和解决方法以及其常见的应用场景,加深了对inline-block应用的进一步理解. 基础知识 display:inline- ...

  6. 详解CSS display:inline-block的应用(转)

    详解CSS display:inline-block的应用 阅读目录 基础知识 inline-block的问题 inline-block的应用 总结 本文详细描述了display:inline-blo ...

  7. Python-Matplotlib可视化(10)——一文详解3D统计图的绘制

    Python-Matplotlib可视化(10)--一文详解3D统计图的绘制 前言 3D散点图 3D曲线图 3D标量场 绘制3D曲面 在3D坐标轴中绘制2D图形 3D柱形图 系列链接 前言 Matpl ...

  8. html css 距离顶部距离,详解CSS line-height和height

    最近在做CSS界面时经常遇到line-height和height这两个属性,一直没搞很明白,今天静下心来好好网上查阅了一下,算是有所领悟.https://blog.csdn.net/a20131263 ...

  9. 一文数学数模-相关性分析(二)斯皮尔曼相关(spearman)相关性分析一文详解+python实例代码

    前言 相关性分析算是很多算法以及建模的基础知识之一了,十分经典.关于许多特征关联关系以及相关趋势都可以利用相关性分析计算表达.其中常见的相关性系数就有三种:person相关系数,spearman相关系 ...

最新文章

  1. Spring是如何运用设计模式的?
  2. 微软BI 之SSAS 系列 - 多维数据集维度用法之二 事实维度(退化维度 Degenerate Dimension)...
  3. java操作storm,Storm集群常用批量操作命令
  4. boost::lambda::switch_statement用法的测试程序
  5. component、 filters(过滤器)、computed(计算属性)、$watch(观察属性)、设定计算属性
  6. 端口镜像 流量过滤_在 AWS 云环境中滥用 VPC 流量镜像抓取网络流量
  7. 改善C#程序的建议9:使用Task代替ThreadPool和Thread
  8. 能学习计算机考证的手机软件有那些?推荐
  9. WebCralwer_java
  10. 平行四边形图案c语言,使用scratch绘制各种图案-平行四边形【解说】
  11. 【2D detection】Deformable DETR论文阅读记录
  12. 苹果手机开不了机怎么办
  13. 28 岁的我,一事无成
  14. 计算数据的平均值、方差和标准差
  15. 列表等份切割,Google Utils Lists partition
  16. Sa-Token中接口的限流
  17. 人气爆棚 航嘉亮相华中科技大学现场
  18. Appid + appSecret + code 到微信方服务器 获取 session_key openid 并授权登录
  19. 前端学习-关于选择器的介绍和使用
  20. 安卓驾考宝典Demo项目源码

热门文章

  1. kernel mtd 分区与UBOOT 分区的理解
  2. PartitionMotionSearch()函数
  3. 学习笔记01:1.1 基于概率的信任
  4. C#窗体应用程序崩溃解决方法总结
  5. 计算机一级考试有三科,全国计算机一级考试是一级WPS Office 一级MS Office 一级Photoshop 三个任选一个考试吗?...
  6. php 结构体_【开发规范】PHP编码开发规范下篇:PSR-2编码风格规范
  7. python 加密解密_python加密解密
  8. ole2高级编程技术 pdf_21天快速掌握Python语言,《21天学通Python》PDF版送给你去学...
  9. android 智能指针的学习先看邓凡平的书扫盲 再看前面两片博客提升
  10. ES6学习笔记六(Iterator和for..of)