Flexbox Not Centering Vertically in IE

前端 未结 10 663
自闭症患者
自闭症患者 2020-12-04 08:15

I have a simple web page with some Lipsum content that is centered on the page. The page works fine in Chrome and Firefox. If I reduce the size of the window, the content fi

10条回答
  •  南方客
    南方客 (楼主)
    2020-12-04 08:33

    The original answer from https://github.com/philipwalton/flexbugs/issues/231#issuecomment-362790042

    .flex-container{
    min-height:100px;
    display:flex;
    align-items:center;
    }
    
    .flex-container:after{
    content:'';
    min-height:inherit;
    font-size:0;
    }
    

提交回复
热议问题