I\'m trying to make a simple design with flexbox but I\'m having trouble with IE11. Basically, I want a footer that sticks to the bottom only if the content is not high enou
On main, instead of flex: 1 use flex: auto. That should be all you need.
The flex: 1 shorthand rule breaks down to:
flex-grow: 1flex-shrink: 1flex-basis: 0The flex: auto shorthand rule breaks down to:
flex-grow: 1flex-shrink: 1flex-basis: autoIE has trouble parsing flex-basis: 0.
More information: