This pen behaves differently between IE11 and Chrome: https://codepen.io/excelkobayashi/pen/EMgaOE
HTML:
<div class="container">
<div class="left"></div>
<div class="right"></div>
</div>
Relevant CSS:
.container
{
display: flex;
flex-direction: row;
flex-wrap: wrap-reverse;
align-items: flex-end;
}
Expected result and Chrome behavior: both divs are aligned to the TOP of the parent. IE11 result: both divs are aligned to the BOTTOM of the parent.
For some reason, IE11 is aligning the items to the bottom, ignoring the fact that row-reverse should swap the position of flex-start and flex-end for align-items.
However, I can't find any documentation stating that IE should be different here, and the IE11 official documentation says that it should match the Chrome behavior: https://msdn.microsoft.com/en-us/ie/jj127298(v=vs.94)
Is there any way to work around this?