css相关《自适应布局》

1. 左边定宽,右边自适应

<div class="left"></div>
<div class="right"></div>
方案一:float + margin
/*方案一:*/
.left {
     height: 100px;
     width: 120px;
     float: left;
     background-color: green;
   }
.right {
      height: 100px;
      margin-left: 120px;
      background-color: yellow;
   }
方案二:float + calc
/*方案二:*/
.left {
     height: 100px;
     width: 120px;
     background-color: red;
     float: left;
    }
 .right {
     height: 100px;
     width: calc(100% - 120px);
     float: left;
     background-color: purple;
 }

2. 左右两边定宽,中间自适应

  • 方案一:float
  • 方案二:float + calc
  • 方案三: 定位
  • 方案四: flex
  • 方案五: 圣杯布局(设置BFC,margin负值法) ===》待定
<div class="wrap">
    <div class="left"></div>
    <div class="right"></div>
    <div class="center"></div>
</div>
方案一
/*方案一:*/
.wrap {
    width: 100%;
    height: 200px;
}
.wrap > div {
    height: 100%;
}
.left {
    width: 120px;
    float: left;
    background-color: red;
}
.right {
    width: 120px;
    float: right;
    background-color: greenyellow;
}
.center {
    margin: 0 120px;
    background-color: green;
}
方案二
/* 方案二: */
.left {
    width: 120px;
    float: left;
    background-color: orange;
}
.right {
    float: right;
    width: 120px;
    background-color: red;
}
.center {
    width: calc(100% - 240px);
    margin-left: 120px;
    background-color: purple;
}
方案三
/*方案三:*/
.wrap{
   height: 100px;
   /* 使用定位 */
   position: relative;
   padding-left: 100px;
   padding-right: 200px;
}
.left {
    width: 100px;
    height:  100px;
    background: red;
    position: absolute;
    left: 0;
    top: 0;
}
.center {
   background: green;
   height: 100px;
}
.right {
    width: 200px;
    height: 100px;
    background: yellow;
    position: absolute;
    right: 0;
    top: 0;
}
方案四
/*方案四: 注意:把center放在中间*/
.wrap {
    display: flex;
}
.left {
    width: 120px;
    background-color: yellowgreen;
}
.right {
    width: 120px;
    background-color: hotpink;
}
.center {
    flex: 1;
    background-color: gold;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值