css中flex-shrink属性是什么

1、flex-shrink指的是当flex容器空间不足时候,单个元素的收缩比例。

2、不支持负值,默认值是1,也就是默认所有的flex子项都会收缩。如果设置为0,则表示不收缩,保持原始的宽度。

实例

//CSS部分
.content{
display:flex;
width:400px;
height:200px;
border:1pxsolid;
}

.left,.center,.right{
height:200px;
}

.left{
width:100px;
background-color:aqua;
}
.center{
width:200px;
background-color:bisque;
}
.right{
width:300px;
background-color:cadetblue;
}

以上就是css中flex-shrink属性的介绍,希望对大家有所帮助。更多css学习指路:css教程

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容