Open xianzou opened 5 years ago
本文转载自掘金木羽™的前端那些事儿」③ CSS 布局方案,并加上一些自己的注释,请关注原作者。 原文地址:https://juejin.im/post/5bd805e6f265da0acd2107d7;
本文转载自掘金木羽™的前端那些事儿」③ CSS 布局方案,并加上一些自己的注释
.parent{ text-align: center; } .child{ display: inline-block; }
.child{ display: table; margin: 0 auto; }
.parent{ position: relative; height:1.5em; } .child{ position: absolute; left: 50%; transform: translateX(-50%); }
.parent{ position: relative; height:1.5em; } .child{ position: absolute; width:100px; left: 50%; margin-left:-50px; }
.parent{ display: flex; justify-content: center; } .child{ margin: 0 auto; }
.parent{ display: table-cell; vertical-align: middle; }
.parent{ position: relative; } .child{ position: absolute; top: 50%; transform: translateY(-50%); }
.parent{ display: flex; align-items: center; }
.parent{ text-align: center; display: table-cell; vertical-align: middle; } .child{ display: inline-block; }
.parent{ position: relative; } .child{ position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.parent{ display: flex; justify-content: center; align-items: center; }
.left{ float: left; width: 100px; } .right{ margin-left: 120px; }
.left{ float: left; margin-right: 20px; } .right{ overflow: hidden; }
.parent{ display: table; width: 100%; table-layout: fixed; } .left,.right{ display: table-cell; } .left{ width: 100px; padding-right: 20px; }
.parent{ display: flex; } .left{ width: 100px; padding-right: 20px; } .right{ flex: 1; }
.left,.center{ float: left; width: 100px; margin-right: 20px; } .right{ overflow: hidden; }
.parent{ display: table; width: 100%; table-layout: fixed; } .left,.center,.right{ display: table-cell; } .right{ width: 100px; padding-right: 20px; }
.parent{ display: flex; } .left,.center{ width: 100px; padding-right: 20px; } .right{ flex: 1; }
html
<div class="parent"> <div class="left"> <p>这是左边的内容,可以根据内容的多少来撑开left的宽度</p> </div> <div class="right"> right </div> </div>
css
.left{ float: left; margin-right: 20px; } .right{ overflow: hidden; } /*设置.left元素下面的内容,实际情况可以根据内容来撑开,不需要使用width,这里只做展示*/ /**.left p{width: 200px;}**/
.parent{ display: table; width: 100%; } .left,.right{ display: table-cell; } .left{ width: 0.1%; padding-right: 20px; } .left p{width:200px;} /** 必须要设置宽度,这里根据内容的多少来修改p标签的宽度 */
.parent{ display: flex; } .left{ margin-right: 20px; } .right{ flex: 1; } /*设置.left元素下面的内容,实际情况可以根据内容来撑开,不需要使用width,这里只做展示*/ .left p{width: 200px;}
.left,.center{ float: left; margin-right: 20px; } .right{ overflow: hidden; } /*设置.left元素下面的内容,实际情况可以根据内容来撑开,不需要使用width,这里只做展示*/ .left p,.center p{ width: 100px; }
.parent{ display: flex; } .left,.center{ margin-right: 20px; } .right{ flex: 1; } /*设置.left元素下面的内容,实际情况可以根据内容来撑开,不需要使用width,这里只做展示*/ .left p,.center p{width: 200px;}
.parent{ margin-left: -20px; } .column{ float: left; width: 25%; padding-left: 20px; box-sizing: border-box;/*这里需要设置盒子模型*/ }
.parent-fix{ margin-left: -20px; } .parent{ display: table; width:100%; table-layout: fixed; } .column{ display: table-cell; padding-left: 20px; }
.parent{ display: flex; } .column{ flex: 1; } /** element+element 选择器, element+element 选择器用于选取第一个指定的元素之后(不是内部)紧跟的元素 选择.column紧跟的.column **/ .column+.column{ margin-left:20px; }
解释:
实现方法
实现原理
备注
.parent{ overflow: hidden; } .left,.right{ padding-bottom: 9999px; margin-bottom: -9999px; } .left{ float: left; width: 100px; } .right{ overflow: hidden; }
.parent{ display: table; width: 100%; } .left{ display:table-cell; width: 100px; margin-right: 20px; } .right{ display:table-cell; }
.parent{ display:flex; width: 100%; } .left{ width: 100px; } .right{ flex:1; }
.main { display: flex; flex-flow: row wrap; justify-content: space-between; } .item { display: inline-block; } .empty{ height: 0; visibility: hidden; }
CSS 常见布局方案
本文转载自掘金木羽™的前端那些事儿」③ CSS 布局方案,并加上一些自己的注释
,请关注原作者。 原文地址:https://juejin.im/post/5bd805e6f265da0acd2107d7;1.水平居中
inline-block + text-align
table + margin
absolute + transform
定宽(兼容性最好)
flex + justify-content
2、垂直
table-cell + vertial-align
absolute + transform
flex + align-items
3、水平垂直
inline-block + table-cell + text-align + vertical-align
absolute + transform
flex
多列布局
1、一列定宽,一列自适应
float + margin(左侧定宽)
float + overflow(左侧不固定宽度)
table布局(实现登高布局)
flex
2、多列定宽,一列自适应
float + overflow
table
flex
3、一列不定宽,一列自适应
float + overflow
html
css
table
flex
4、多列不定宽,一列自适应
float + overflow
flex
5、等分
float + margin
table + margin
flex
6、等高
float + overflow
解释:
实现方法
实现原理
备注
table
flex
并排等分,单排对齐靠左布局
flex