css能不能实现左边div固定宽度,右边div自适应撑满剩下的宽度

 我来答
CH荼靡
2017-08-25 · 超过37用户采纳过TA的回答
知道小有建树答主
回答量:113
采纳率:100%
帮助的人:25.3万
展开全部

可以实现,


<div class="box">
  <div class="left"></div>
  <div class="right"></div>
</div>
/*利用bfc*/
.box{
   height: 200px;
   background: red;
}
.left{
   width: 100px;
   height: 150px;
   background: blue;
   float: left;
}
.right{
   height: 150px;
   overflow: hidden;
   background: orange;
}
/*定位*/
.box{
    height: 200px;
    background: red;
    position: relative;
}
.left{
    width: 100px;
    height: 150px;
    background: blue;
}
.right{
    height: 150px;
    background: orange;
    position: absolute;
    right: 0;
    top: 0;
    left: 100;
 }
/*不考虑兼容的话,弹性盒*/
.box{
  width: 100%;
  height: 200px;
  background: red;
  display: flex;
}
.left{
  width: 100px;
  height: 150px;
  background: blue;
}
.right{
  flex:1;
  height: 150px;
  background: orange;
}
原来你是这薯片
2017-08-25 · TA获得超过206个赞
知道小有建树答主
回答量:124
采纳率:50%
帮助的人:97.6万
展开全部
    .content{
    width:1000px;
    height:500px;
  }
  .left{
    float:left;
    width:300px;
    height:100%;
    background:green;
  }
  .right{
    width:100%;
    height:100%;
    margin-left:300px;
    background:red;
  }
 <div class="content">
    <div class="left"></div>
    <div class="right"></div>
  </div>

左边div左浮动,宽度300;右边div用margin-left挤到右边,宽度设为100%

效果图:

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
扑火的飞蛾06
2017-08-25 · TA获得超过1156个赞
知道小有建树答主
回答量:1895
采纳率:62%
帮助的人:277万
展开全部

可以的,比如dom结构如下,

<div>
<div class='div1'></div>
<div class='div2'></div>
</div>
.div1 {
width: 200px;
height: 300px;
display: inline-block;
}
.div2 {
width: calc(100% - 200px);
height: 300px;
display: inline-block;
}

这样就可以达到题中所述的效果了。

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式