📅  最后修改于: 2022-03-11 14:47:49.587000             🧑  作者: Mango
Do not use "flex: 1" or "flex-basis: 0" inside "flex-direction: column" when you need to support IE11
/* not ie */
.child {
flex: 1;
}
/* ie11 */
.child {
flex: 1 1 auto;
}