Firefox上的bootstrap row-flexbox不会中断到新行

时间:2016-07-22 13:30:50

标签: html css less flexbox

我有一个使用flex模式的布局。在Chrome和Safari中很好,但是在Firefox和IE中看起来很糟糕。 这是我的HTML:

<div ng-repeat="section in categorySections" class="row-flex row-flex-wrap">
    <div class="flex-col lesson-section col-md-12">
        <h2>{{ section.title }}</h2>
        <p>{{ section.description }}</p>
    </div>
    <div ng-repeat="lesson in section.lessons" class="col-md-3">
        <div class="panel flex-col">
            <div class="panel-title">
                <h3>{{ lesson.title }}</h3>
                <small>{{ lesson.date }}</small>
            </div>
            <div class="panel-body flex-grow">
                <p>{{ lesson.shortDescription }}</p>
            </div>
            <div class="panel-footer">
                <a href="#/chords/{{ lesson.id }}"><i class="fa fa-angle-right"></i> Continue</a>
            </div>
        </div>
    </div>
</div>

和css:

.row-flex, .row-flex > div[class*='col-'] {  
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex:1 1 auto;
}

.row-flex-wrap {
    -webkit-flex-flow: row wrap;
    align-content: flex-start;
    flex:0;
}

.row-flex > div[class*='col-'], .container-flex > div[class*='col-'] {
     margin:-.2px; /* hack adjust for wrapping */
}

.container-flex > div[class*='col-'] div, .row-flex > div[class*='col-'] div {
    width:100%;
}

.flex-col {
    display: flex;
    display: -webkit-flex;
    flex: 1 100%;
    flex-flow: column nowrap;
}

.flex-grow {
    display: flex;
    -webkit-flex: 2;
    flex: 2;
}

这就是它在Firefox中的样子: enter image description here

这些卡片应在标题下,而不是在页面的右侧。

有人帮助我做错了吗?

1 个答案:

答案 0 :(得分:1)

{
    display:-moz-deck;
    width:100%;
}