?原因:
A flex item cannot be smaller than the size of its content along the main axis.
The defaults are...
• min-width: auto
• min-height: auto
...for flex items in row-direction and column-direction, respectively.
解决:
You can override these defaults by setting flex items to:
• min-width: 0
• min-height: 0
• overflow: hidden (or any other value, except visible)