Answers for "internet explorer css flex 1"

CSS
1

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;
}
Posted by: Guest on May-29-2020

Browse Popular Code Answers by Language