After researching, it appears that using the standardized flex terms should work with IE10/IE11.
I have a container div with 2 child divs.
Both child divs are smaller than 400px, so there should always be enough space for the justify-content: space-between
.
My goal is to have the first child at the top and the second child at the bottom.
This layout functions correctly in Chrome and Firefox but not in IE, and I'm unsure why.
Any comments or feedback would be appreciated.
<div style="display: flex; flex-direction: column; justify-content: space-between; min-height: 400px; background-color: lightyellow;">
<div style="background-color: red;">
<h2>Title (variable height)</h2>
<p>Summary (variable height)</p>
</div>
<div style="background-color: orange;">
<img src="http://avatarbox.net/avatars/img32/tv_test_card_avatar_picture_61484.jpg" />
</div>
</div>