常见自适应布局常见

142 阅读2分钟

常见的自适应布局有以下2种:左(右)列固定右列自适应、左右两列固定中间自适应。

一、左(右)列固定右列自适应

说明:左列固定右列自适应,也可以右列固定左列自适应

<div class="container">
    <div class="left">固定宽度</div>
    <div class="right">自适应</div>
</div>

方式1 父元素 display:flex,子元素 flex: 1

* { margin: 0;padding: 0 }
 
.container {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
}
 
.left {
    width: 200px;
    height: 100%;
    background-color: #72e4a0;
}
 
.right {
    flex: 1;
    height: 100%;
    background-color: #9dc3e6;
}

方式2 子元素 width:calc()

思路: 自适应列的width根据calc()自动计算,如:父容器width - 固定列width ,这个固定宽是你设置的其中一列的w

* { margin: 0;padding: 0 }
 
.container {
    position: absolute;
    width: 100%;
    height: 100%;
}
 
.left {
    float: left;
    width: 200px;
    height: 100%;
    background-color: #72e4a0;
}
 
.right {
    float: left;
    width: calc(100% - 200px);
    height: 100%;
    background-color: #9dc3e6;
}

二、左右两列固定中间自适应

说明:左右两列固定,中间自适应

<div class="container">
    <div class="left">左侧定宽</div>
    <div class="mid">中间自适应</div>
    <div class="right">右侧定宽</div>
</div>

方式1 父元素display:flex,子元素 flex: 1

思路: 在父元素设置display为flex时,其中一列的flex为1,其余列都设置固定width。

* { margin: 0;padding: 0 }
 
.container {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
}
 
.left {
    float: left;
    width: 100px;
    height: 100%;
    background-color: #72e4a0;
}
 
.mid {
    float: left;
    height: 100%;
    flex: 1;
    background-color: #9dc3e6;
}
 
.right {
    float: left;
    width: 100px;
    height: 100%;
    background-color: #4eb3b9;
}

方式2 子元素 width:calc()

思路: 自适应列的width根据calc()自动计算,如:父容器width - 固定列width。

* { margin: 0;padding: 0 }
 
.container {
    position: absolute;
    width: 100%;
    height: 100%;
}
 
.left {
    float: left;
    width: 100px;
    height: 100%;
    background-color: #72e4a0;
}
 
.mid {
    float: left;
    width: calc(100% - 100px - 100px);
    height: 100%;
    background-color: #9dc3e6;
}
 
.right {
    float: left;
    width: 100px;
    height: 100%;
    background-color: #4eb3b9;
}