10

flexbox可以嵌套吗?我在水平弹性盒中嵌套了一个水平弹性盒,在垂直弹性盒中嵌套了一个垂直弹性盒。只有水平中的水平在 chrome 中起作用,而在 Firefox 中则不起作用!

我在这里创建了一个 jsfiddle:http: //jsfiddle.net/NpkTL/1/

但这里是html:

<div id="A">
    <div id="A1">A1</div>
    <div id="A2">
        <div id="A2-container">
            <div id="A2a">A2a</div>
            <div id="A2b">A2b</div>
        </div>
    </div>
</div>
<div id="B">
    <div id="B1">B1</div>
    <div id="B2">
        <div id="B2-container">
            <div id="B2a">B2a</div>
            <div id="B2b">B2b</div>
        </div>
    </div>
</div>

和CSS:

* {
    margin: 0;
    padding: 0;
    font-family: Arial;        
}

#A {
    position: absolute;
    top: 0px;
    left: 0px;
    background: black;
    width: 50%;
    height: 100%;

    display: -moz-box;
    display: -webkit-box;    
    display: box;
    -moz-box-orient: horizontal;
    -webkit-box-orient: horizontal;
    box-orient: horizontal;
}

#A1 {
background: brown;
width: 100px;
height: 80%;   
}

#A2 {
background: orange;
height: 80%;
-moz-box-flex: 1;
-webkit-box-flex: 1;
box-flex: 1;    
}

#A2-container {
    display: -moz-box;
    display: -webkit-box;    
    display: box;
    -moz-box-orient: horizontal;
    -webkit-box-orient: horizontal;
    box-orient: horizontal;
    width: 100%;
    height: 100%;    
}

#A2a {
    background: red;
    height: 80%;   
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    box-flex: 1;    
}

#A2b {
    background: blue;
    width: 100px;
    height: 80%;
}

#B {
    position: absolute;
    top: 0px;
    right: 0px;
    background: gray;
    width: 50%;
    height: 100%;

    display: -moz-box;
    display: -webkit-box;    
    display: box;
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    box-orient: vertical;

}

#B1 {
    background: brown;
    width: 80%;
    height: 100px;   
}

#B2 {
    background: orange;
    width: 80%;
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    box-flex: 1;    
}

#B2-container {
    display: -moz-box;
    display: -webkit-box;    
    display: box;
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    width: 100%;
    height: 100%;    
}

#B2a {
    background: red;
    width: 80%;   
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    box-flex: 1;    
}

#B2b {
    background: blue;
    width: 80%;
    height: 100px;
}

#A在左边,#B在右边。#A 和#A2-container 是垂直弹性盒,#B 和#B2-container 是水平弹性盒。我为不同的 div 设置颜色并在每个级别(垂直宽度和垂直高度)缩小它们,以便更容易看到发生了什么。左边看起来不错(在 chrome 中!),但在右边,#B2a 应该垂直填充 #B2(橙色)。

我意识到在这个例子中,使用中间行/列为 3 的 flex 的 flexbox 会更容易,但我将内容动态加载到 #A2 的等效项中,它恰好也是一个 flexbox。

4

2 回答 2

5

弹性盒可以嵌套,但你必须摆脱你的定位。无论如何,你基本上不再需要它了。

Now the problem that remains as of today is z-stacking flexboxes in my experience. And It is also not straight forward to position flexbox items on the main axis differently from each other (for instance if I have a row and I want to align one child item on the left and one other on the right, I will have to play with margins and so on which can become painful)

Also the results can be quite inconsistent depending on the different browsers.

By any means, I encourage you to use this : http://the-echoplex.net/flexyboxes/ It helps a lot.

于 2013-08-27T20:51:50.257 回答
4

Firefox 的 flex box 模型现在有很多问题。如果你有任何固定或绝对定位的盒子,它会坏掉;也没有宽度会将您的弹性框恢复为内联框。

于 2012-05-14T17:01:33.420 回答