使用flex布局实现宽度自适应

五迷三道 提交于 2019-11-30 11:17:19

1.两侧固定,中间自适应


.box{
    width: 100%;
    display: flex;
    height: 300px;
}
.left{
    width: 100px;
    height: 200px;
    background-color:red;
}
.right{
    width: 100px;
    height: 200px;
    background-color:red;
}
.center{
    flex: 1;
    height: 300px;
    background-color: lime;
}

 

<body>
        <div class="box">
         <div class="left"></div>
        <div class="center"></div>
         <div class="right"></div>
        </div>
 

2.左侧固定,右侧自适应

.box{
    width: 100%;
    display: flex;
    height: 300px;
}
.left{
    width: 100px;
    height: 200px;
    background-color:red;
}
.right{
    flex: 1;
    height: 300px;
    background-color:lime;
}



<div class="box">
<div class="left"></div>
<div class="right"></div>
</div>

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!