1
我嵌套在主要佈局flexboxes一些平方flexboxes做了Flexbox的佈局。它在Chrome和IE中運行良好,但Firefox v37.02不會讓它們平方或根本不顯示它們。火狐V.37嵌套平方flexboxes
我想容器本身是主要佈局的flexboxes,這樣我就可以與媒體查詢重新排列,並有內容flexboxes在可用空間包裹。
這裏是一個小提琴例如https://jsfiddle.net/SanMoll/jj591x8f/
<div class="main">
<div class="article">
<div class="itemXL"></div>
<div class="itemXL"></div>
</div>
<div class="aside">
<div class="itemL"></div>
<div class="itemL"></div>
<div class="itemL"></div>
<div class="itemL"></div>
</div>
</div>
<style>
.main {
display:flex;
width:100%;
height:100%;
background-color:#000;
}
.article {
/* display: flex;*/
flex-wrap: wrap;
flex-direction: column;
width: 50%;
flex: 1;
}
.itemXL {
background-color: #f4f4f4;
width: 97%;
height:0;
margin-right: 3%;
margin-bottom: 3%;
padding-bottom: 97%;
}
.aside {
/*display: flex;*/
flex-wrap: wrap;
flex-direction: row;
width: 50%;
}
.itemL {
background-color: #f4f4f4;
width: 47%;
height:0%;
margin-right: 3%;
margin-bottom: 3%;
padding-bottom:47%;
}
</style>
任何幫助深表感謝。 提前致謝!
僅供參考,關於css flex佈局的問題應該標記爲'flexbox'; 'flex'標籤是指Apache Flex。 – Brian
謝謝,我修好了! – Santana
嗨,喬治,感謝編輯!不知道你是如何做得那麼快,我使用空間來完成一段時間需要安靜的代碼行,無論如何咚咚!你有沒有機會檢查代碼?問候 – Santana