Text in a flex container doesn't wrap in IE11

后端 未结 12 2161
自闭症患者
自闭症患者 2020-11-22 05:23

Consider the following snippet:

12条回答
  •  不要未来只要你来
    2020-11-22 05:54

    Somehow all these solutions didn't work for me. There is clearly an IE bug in flex-direction:column.

    I only got it working after removing flex-direction:

    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    

提交回复
热议问题