flex 1 in ie11 code example
Example: ie11 flex 1
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;
}
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;
}