Skip to content

Instantly share code, notes, and snippets.

@hiulit
Last active May 18, 2017 09:26
Show Gist options
  • Save hiulit/8125b89479989b1e3c63ce25f732d9db to your computer and use it in GitHub Desktop.
Save hiulit/8125b89479989b1e3c63ce25f732d9db to your computer and use it in GitHub Desktop.
Flexbox issues with IE

Flexbox issues with IE

Inline elements inside flex container don't wrap

display: block;
width: 100%;

Children of flex-column don't adjust height properly

.parent {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto
}

.children {
    flex: 1 1 auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment