निम्नलिखित स्निपेट पर विचार करें:
.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
मूल तत्व से हटाता हूं तो समस्या दूर हो जाती है । ऐसा लगता है कि इसका क्या कारण है