一个div宽度或高度固定,另一个div铺满剩余空间

6 篇文章 0 订阅

一. 一个div宽度固定,实现如下效果: box1固定宽度200px; box2铺满页面剩余部分

<div class="wrapper">
  <div class="box1"></div>
  <div class="box2"></div>
</div>

1. 利用flex布局

.wrapper {
  display: flex;
}
.box1 {
  width: 200px;
  height: 200px;
  background-color: bisque;
}

.box2 {
  flex: 1;
  height: 100px;
  background-color: blueviolet;
}

2. 用浮动布局和overflow属性

.box1 {
  width: 200px;
  height: 200px;
  background-color: bisque;
  float: left;
}

.box2 {
  background-color: blueviolet;
  height: 100px;
  overflow: hidden;
}

3. 用浮动和左边距

.box1 {
  width: 200px;
  height: 200px;
  background-color: bisque;
  float: left;
}

.box2 {
  background-color: blueviolet;
  height: 100px;
  margin-left:0;
}

二、一个div高度固定,实现如下效果

<div class="content">
    <div class="top">top</div>
    <div class="bottom">bottom</div>
</div>

1. 利用flex

.content {
  width: 500px;
  height: 500px;
  background-color: brown;
  display: flex;
  flex-direction: column;
}
.top {
  width: 500px;
  height: 200px;
  background-color: burlywood;
}
.bottom {
  flex: 1;
  width: 300px;
  background-color: cadetblue;
}

2. 利用calc计算高度

.content {
  width: 500px;
  height: 500px;
  background-color: brown;
}
.top {
  width: 500px;
  height: 200px;
  background-color: burlywood;
}
.bottom {
  width: 300px;
  background-color: cadetblue;
  height: calc(100% - 200px);
}

3. 使用绝对定位

.content {
  width: 500px;
  height: 500px;
  background-color: brown;
  position: relative;
}
.top {
  width: 500px;
  height: 200px;
  background-color: burlywood;
}
.bottom {
  width: 300px;
  background-color: cadetblue;
  position: absolute;
  bottom: 0;
  top: 200px;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值