次のスニペットを考えてみましょう:
.parent {
display: flex;
flex-direction: column;
width: 400px;
border: 1px solid red;
align-items: center;
}
.child {
border: 1px solid blue;
}
<div class="parent">
<div class="child">
Lorem Ipsum is simply dummy text of the printing and typesetting industry
</div>
<div class="child">
Lorem Ipsum is simply dummy text of the printing and typesetting industry
</div>
</div>
Chromeでは、テキストは期待どおりに折り返されます。
しかし、IE11では、テキストは折り返されません。
これはIEの既知のバグですか?(はいの場合は、ポインタが高く評価されます)
既知の回避策はありますか?
この同様の質問には、明確な答えと公式の指針はありません。
align-items: center
親要素から削除すると、問題はなくなります。それが原因のようです