目录

CSS flex-shrink 属性


示例

让第二个弹性项目比其余项目收缩三倍:

div:nth-of-type(2) {
  flex-shrink: 3;
}
亲自试一试 »

定义和用法

这个flex-shrink属性指定该项目相对于同一容器内的其余灵活项目如何收缩。

笔记:如果该元素不是灵活项,则flex-shrink属性没有影响。

默认值: 1
遗传:
可动画: 是的。阅读可动画的尝试一下
版本: CSS3
JavaScript 语法: 对象.style.flexShrink="5"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

后跟 -webkit- 或 -moz- 的数字指定使用前缀的第一个版本。

Property
flex-shrink 29.0
21.0 -webkit-
11.0 28.0
18.0 -moz-
9.0
6.1 -webkit-
17.0


CSS 语法

flex-shrink: number|initial|inherit;

属性值

Value Description Play it
number A number specifying how much the item will shrink relative to the rest of the flexible items. Default value is 1 Play it »
initial Sets this property to its default value. Read about initial Play it »
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS 教程:CSS 灵活盒

CSS 参考:弹性属性

CSS 参考:弹性基础属性

CSS 参考:弯曲方向属性

CSS 参考:弹性流属性

CSS 参考:弹性增长属性

CSS 参考:flex-wrap 属性

HTML DOM 参考:flexShrink 属性