CSS3 Flexbox中flex-shrink属性的用法

本文深入解析CSS3 Flexbox布局中的flex-shrink属性,详细解释其作用和计算方法,通过实例演示如何控制弹性项目的压缩比例,确保布局在不同条件下的合理调整。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在CSS3 Flexbox中flex-shrink属性定义为:

This <number> component sets ‘flex-shrink’ longhand and specifies the flex shrink factor, which determines how much the flex item will shrink relative to the rest of the flex items in the flex container when negative free space is distributed. When omitted, it is set to ‘1’. The flex shrink factor is multiplied by the flex basis when distributing negative space.

通俗来讲就是当flex items的大小超过了flex container时, 各个flex item的压缩比例, 请看下面的示例:


<style>

  #container div {
    height: 200px;
    width: 60px;
   }
  #test1 {
    background-color: blue;
    flex-shrink: 1;
  }
  #test2 {
    background-color: yellow;
    flex-shrink: 0.5;

  }

</style>

<div id="container">
    <div id="test1"></div>
    <div id="test2"></div>
  </div>

<div id="test1">与<div id="test2">的宽度总和是120px, 超过了<div id="container">的宽度100px, 超过的大小为20px, 那么container为了装下两个子div,两个子div的宽度就必须减少20px,那么每个子div的宽度减少多少呢? 这个时候就需要flex-shrink属性来分配了,每个子div的实际显示宽度计算方法公式为:

         实际值 = 计划值 - 总差值 * flex-shrink/(flex-shrink和)

根据上面的公式我们可以计算出<div id="test1">与<div id="test2">的实际宽度值分别为:

<div id="test1">: width = 60 - 20 * 1 / (1 + 0.5) = 47px

<div id="test2">: width = 60 - 20 * 0.5 / (1 + 0.5) = 53px

根据以上结果可知flex-shrink值越大,flex item的实际结果就会越小

参考链接: 

1: http://www.w3.org/TR/css3-flexbox/#flex-shrink

2: http://www.w3.org/TR/css3-flexbox/#flex-shrink-factor

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值