css布局解决方案

2019-01-04  本文已影响0人  Bingo是谁

水平居中

1. 使用inline-block + text-align

(1) 原理、用法

(2) 代码示例

<div class="parent">
    <div class="child>DEMO</div>
</div>
.child{
    display:inline-block;
}
.parent{
    text-align:center;
}

(3) 优缺点

使用table+margin

(1)原理、用法

(2)代码实例

<div class="parent">
    <div class="child>DEMO</div>
</div>
.child {
    display:table;
    margin:0 auto;
}

(3)优缺点:

使用absolute+transform

(1)原理、用法

(2)代码实例

<div class="parent">
    <div class="child>DEMO</div>
</div>
.parent {
    position:relative;
}
.child {
    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

(3)优缺点

使用flex+justify-content

(1)原理、用法

(2)代码实例

<div class="parent">
    <div class="child>DEMO</div>
</div>
.parent {
    display:flex;
    justify-content:center;
}

(3)优缺点

垂直居中

使用table-cell+vertical-align

(1)原理、用法

<div class="parent">
    <div class="child>DEMO</div>
</div>
.parent {
    display:table-cell;
    vertical-align:middle;
}

(3)优缺点

使用absolute+transform

(1)原理、用法

<div class="parent">
    <div class="child>DEMO</div>
</div>
.parent {
    position:relative;
}
.child {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

(3)优缺点

多列布局

定宽+自适应

使用float+overflow

(1)原理、用法

(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;
    width:100px;
    margin-right:20px;
}
.right {
    overflow:hidden;
}

(3)优缺点

使用float+margin

(1)原理、用法

<div class="parent">
    <div class="left">
        <p>left</p>
    </div>
    <div class="right">
        <p>right</p>
        <p>right</p>
    </div>
</div>
.left {
    float:left;
    width:100px;
}
.right {
    margin-left:120px;
}

(3)优缺点

使用float+margin(改良版)

(1)原理、用法

(2)代码实例

<div class="parent">
    <div class="left">
        <p>left</p>
    </div>
    <div class="rigth-fix">
        <div class="right">
            <p>right</p>
            <p>right</p>
        </div>
    </div>
</div>
.left {
    float:left;
    width:100px;
    position:relative;
}
.right-fix {
    float:right;
    width:100%;
    margin-left:-100px;
}
.right {
    margin-left:120px;
}

(3)优缺点

使用table

(1)原理、用法

(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%;
    table-layout:fixed;
}
.left {
    width:100px;
    padding-right:20px;
}
.right,.left {
    display:table-cell;    
}
使用flex

(1)原理、用法

(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 {
    width:100px;
    margin-right:20px;
}
.right {
    flex:1;
}

(3)优缺点

全屏布局

全屏布局的特点

全屏布局的方法

使用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;
}

(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{
    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;
}

(3)优缺点

参考文章:
CSS布局解决方案(终结版)

上一篇下一篇

猜你喜欢

热点阅读