2017-06-17 46 views
0

我想打好了兩個div水平2並排divs。選擇一個適合內容,其他擴展全寬

parent div width=500px 
- left div: shall grow horizontally to fit to contents (not more or less) 
- right div: shall grow horizontally and take up all the space to the right edge 

我怎樣才能做到這一點?

+0

沒有一個重複的建議重複需要一個固定寬度的div和擴大DIV,而這個問題問的兩個生長的div其中第一個長到內容和另一個可用空間。 – Paul

回答

0

使用flexflex-grow

div { 
 
display: flex; 
 
width: 500px; 
 
} 
 
.grow { 
 
flex-grow: 1; 
 
background: #eee; 
 
}
<div> 
 
    <span>content</span> 
 
    <span class="grow">grow</span> 
 
</div>

相關問題