Considera il seguente frammento:
.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>
In Chrome, il testo viene spostato come previsto:
Ma, in IE11, il testo non è a capo :
È un bug noto in IE? (se sì, sarà apprezzato un puntatore)
Esiste una soluzione alternativa nota?
Questa domanda simile non ha una risposta definitiva e un puntatore ufficiale.
align-items: center
dall'elemento genitore. Questo sembra essere ciò che lo sta causando