我正在尝试使用 flexbox CSS来实现一些东西。我只想在Chrome 和 Firefox中兼容。我可以在 FF 中做到这一点,但在Chrome中不起作用。我想要的是递归地插入垂直框中心。你可以看看这里。
div.contenaireBlc {background:#FFF; border:1px solid #ddd;
width:250px; height:250px;margin:0 30px 0 0;}
.contenaireHori {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
-webkit-flex-direction: column;
-webkit-flex-wrap: nowrap;
background:#777;
height:100%;
width:100%;
}
.innerTop{
-webkit-flex: 1 1 50%;
flex: 1 1 50%;
background: green;
width: 100%;
}
.traversHori{
flex: 0 0 20px;
-webkit-flex: 0 0 20px;
background: blue;
width: 100%;
}
.innerBottom{
-webkit-flex: 1 1 50%;
flex: 1 1 50%;
background: red;
width: 100%;
}
在chrome中,第二个红色和绿色框的height = 0px,用于占用剩余空间(每个 50%)。