Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by makandracards.com #
 
PREVIOUS NEXT
Tagged: #flex
ADD COMMENT
Topic
Name
5+2 =