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;
}
arvinreydelapena