Tim*_*eev 11 html css internet-explorer css3 flexbox
在IE 11中,如果项目项目具有最大宽度属性,则它们没有正确居中.但是,此示例适用于Chrome和Firefox.
.container {
display: flex;
justify-content: center;
align-items: center;
background-color: blue;
width: 100%;
}
.red {
background-color: red;
flex-grow: 1;
display: flex;
max-width: 200px;
}
Run Code Online (Sandbox Code Playgroud)
<div class="container">
<div class="red">non centered box</div>
</div>
Run Code Online (Sandbox Code Playgroud)