2016-04-03 92 views

回答

1

你忘了创建/打开下降

<div class="col col2"> 

<div class="col col1"> 
</div> place <div class="col col2"> after the ending div of col col1 

也与该更换你的CSS代码:

html,body{ 
    height:100%; /*Having 100% stretches your content, try removing height:100%; and see the difference*/ 
} 

.parent{ 
    padding:10px; 
    background:#888; 
    display:flex; 
    flex-wrap:wrap; /*Using flex-wrap:wrap will wrap your second div class to the next line*/ 
    flex:1 0 auto; 
} 

.col1{ 
    background:yellow; 
} 

.col2{ 
    background:lightgreen; 
}