这三个 flex items 上的属性控制它们如何沿主轴共享空间。Shorthand flex 将它们合并在一起。
css
.item { flex: 1 1 200px; }
/* │ │ └── flex-basis: the starting size BEFORE growing/shrinking */
/* │ └──── flex-shrink: how much it shrinks when space is tight */
/* └────── flex-grow: how much it grows to fill extra space */
