不定宽+自适应
1)使用float+overflow(1)原理、用法
- 原理:这种情况与两列定宽查不多。
- 用法:先将左框设置为float:left、margin-right:px,再设置右框overflow: hidden,最后设置左框中的内容width: px。
(2)代码实例
<div class="parent"> <div class="left"> <p>left</p> </div> <div class="right"> <p>right</p> <p>right</p> </div> </div>
.left{ float: left; margin-right: 20px; } .right{ overflow: hidden; } .left p{ width: 200px; }
(3)优缺点
- 优点:简单
- 缺点:ie6下兼容性存在一定问题
2)使用table(1)原理、用法
- 原理:通过将父框改变为表格,将左右框转换为类似于同一行的td以达到多列布局,设置父框宽度100%,给左框子元素一个固定宽度从而达到自适应。
- 用法:先将父框设置为display: table、width: 100%,再设置左、右框display: table-cell,最后设置左框width: 0.1%、padding-right: px以及左框中的内容width: px。
(2)代码实例
<div class="parent"> <div class="left"> <p>left</p> </div> <div class="right"> <p>right</p> <p>right</p> </div> </div>
.parent{ display: table; width: 100%; } .left,.right{ display: table-cell; } .left{ width: 0.1%; padding-right: 20px; } .left p{ width:200px; }
(3)优缺点
- 缺点:ie6 ie7不支持
3)使用flex(1)原理、用法
- 原理:通过设置CSS3布局利器flex中的flex属性以达到多列布局,加上给左框中的内容定宽、给右框设置flex达到不定款+自适应。
- 用法:先将父框设置为display:flex,再设置右框flex:1,最后设置左框margin-right:20px、左框中的内容width: *px。
(2)代码实例
<div class="parent"> <div class="left"> <p>left</p> </div> <div class="right"> <p>right</p> <p>right</p> </div> </div>
.parent { display:flex; } .left { margin-right:20px; } .right { flex:1; } .left p{ width: 200px; }
(3)优缺点
- 优点:flex很强大
- 缺点:兼容性存在一定问题,性能存在一定问题
两列不定宽+一列自适应
(1)原理、用法
- 原理:这个情况与一列不定宽+一列自适应查不多。
- 用法:先将左、中框设置为float:left、margin-right:px,再设置右框overflow:hidden,最后给左中框中的内容设置width: *px。
(2)代码实例
<div class="parent"> <div class="left"> <p>left</p> </div> <div class="center"> <p>center</p> </div> <div class="right"> <p>right</p> <p>right</p> </div> </div>
.left,.center{ float: left; margin-right: 20px; } .right{ overflow: hidden; } .left p,.center p{ width: 100px; }
等分布局
公式转化:c = w n + g (n-1) -> c = w n + g n - g -> c + g = (w + g) * n
因此,我们需要解决两个问题:1.如何让总宽度增加g(即:c+g),2.如何让每个宽包含g(即:w+g)
1)使用float(1)代码实例
<div class="parent"> <div class="column"><p>1</p></div> <div class="column"><p>2</p></div> <div class="column"><p>3</p></div> <div class="column"><p>4</p></div> </div>
.parent{ margin-left: -20px;//c增加g } .column{ float: left; width: 25%; padding-left: 20px; box-sizing: border-box;//包含padding区域 w+g }
(2)优缺点
- 优点:兼容性较好
- 缺点:ie6 ie7百分比兼容存在一定问题
2)使用table(1)代码实例
<div class="parent-fix"> <div class="parent"> <div class="column"><p>1</p></div> <div class="column"><p>2</p></div> <div class="column"><p>3</p></div> <div class="column"><p>4</p></div> </div> </div>
.parent-fix{ margin-left: -20px;//c+g } .parent{ display: table; width:100%; table-layout: fixed; } .column{ display: table-cell; padding-left: 20px;//w+g }
(2)优缺点
- 优点:结构和块数无关联
- 缺点:增加了一层
3)使用flex(1)代码实例
<div class="parent"> <div class="column"><p>1</p></div> <div class="column"><p>2</p></div> <div class="column"><p>3</p></div> <div class="column"><p>4</p></div> </div>
.parent{ display: flex; } .column{ flex: 1; } .column+.column{ margin-left:20px; }
(2)优缺点
- 优点:代码量少,与块数无关
- 缺点:兼容性存在一定问题
定宽+自适应+两块高度一样高
1)使用table(1)代码实例
<div class="parent"> <div class="left"> <p>left</p> </div> <div class="right"> <p>right</p> <p>right</p> </div> </div>
.parent { display:table; width:100%; table-layout:fixed; } .left { width:100px; padding-right:20px; } .right,.left { display:table-cell; }
2)使用flex
<div class="parent"> <div class="left"> <p>left</p> </div> <div class="right"> <p>right</p> <p>right</p> </div> </div>
.parent { display:flex; } .left { width:100px; margin-right:20px; } .right { flex:1; }
3)使用float(1)代码实例
<div class="parent"> <div class="left"> <p>left</p> </div> <div class="right"> <p>right</p> <p>right</p> </div> </div>
p{ background: none!important; } .left,.right{ background: #444; } .parent{ overflow: hidden; } .left,.right{ padding-bottom: 9999px; margin-bottom: -9999px; } .left{ float: left; width: 100px; margin-right: 20px; } .right{ overflow: hidden; }
(2)优缺点
- 优点:兼容性好
- 缺点:伪等高,不是真正意义上的等高
全屏布局
全屏布局的特点
- 浏览器变大时,撑满窗口
- 滚动条不是全局滚动条,而是出现在内容区域里,往往是主内容区域
全屏平局的方法
1)使用position
(1)代码实例
<div class="parent"> <div class="top">top</div> <div class="left">left</div> <div class="right"> <div class="inner">right</div> </div> <div class="bottom">bottom</div> </div>
html,body,.parent{ margin:0; height:100%; overflow:hidden; } body{ color:white; } .top{ position:absolute; top:0; left:0; right:0; height:100px; background:blue; } .left{ position:absolute; left:0; top:100px; bottom:50px; width:200px; background:red; } .right{ position:absolute; left:200px; top:100px; bottom:50px; right:0; background:pink; overflow: auto; } .right .inner{ min-height: 1000px; } .bottom{ position:absolute; left:0; right:0; bottom:0; height:50px; background: black; }
(2)优缺点
- 优点:兼容性好,ie6下不支持
2)使用flex(1)代码实例
<div class="parent"> <div class="top">top</div> <div class="middle"> <div class="left">left</div> <div class="right"> <div class="inner">right</div> </div> </div> <div class="bottom">bottom</div> </div>
html,body,.parent{ margin:0; height:100%; overflow:hidden; } body{ color: white; } .parent{ display: flex; flex-direction: column; } .top{ height:100px; background: blue; } .bottom{ height:50px; background: black; } .middle{ flex:1; display:flex; } .left{ width:200px; background: red; } .right{ flex: 1; overflow: auto; background:pink; } .right .inner{ min-height: 1000px; }
(2)优缺点
- 缺点:兼容性差,ie9及ie9以下不兼容
3)使用flex(1)代码实例
<div class="parent"> <div class="top">top</div> <div class="middle"> <div class="left">left</div> <div class="right"> <div class="inner">right</div> </div> </div> <div class="bottom">bottom</div> </div>
html,body,.parent{ margin:0; height:100%; overflow:hidden; } body{ color:white; } .parent{ display:flex; flex-direction:column; } .top{ background:blue; } .bottom{ background:black; } .middle{ flex:1; display:flex; } .left{ background: red; } .right{ flex:1; overflow:auto; background: pink; } .right .inner{ min-height:1000px; }
全屏布局的小结
方案 | 兼容性 | 性能 | 自适应 |
Position | 好 | 好 | 部分自适应 |
Flex | 较差 | 差 | 可自适应 |
Grid | 差 | 较好 | 可自适应 |
当然,最最最最最后,如果您喜欢这片文章,可以疯狂点赞或者收藏喔!!😯