這可能已經回答了幾次,但我無法找到這個答案,我的具體問題。汽車寬度的div盒
我一直在做這個:http://jsfiddle.net/LPGGh/
<div class="wrapper">
<div class="project">
<div class="media"></div>
<div class="text">Text</div>
</div>
<div class="project">
<div class="media"></div>
<div class="text">Text</div>
</div>
<div class="project">
<div class="media"></div>
<div class="text">Text</div>
</div>
.media{
width: 300px;
height:200px;
background-color:red;
margin-bottom:1em;
}
.text{
margin-bottom:2em;
}
.project{
display: inline-block;
margin-left: 1em;
margin-right: 1em;
}
.wrapper{
margin-top: 1.65em;
width: 100%;
}
我的問題是如何得到的.media自動貼合在寬度,使紅色箱子總是使用所有的可用的空間,並仍然保持利潤率當然?
謝謝!
你想要紅色方塊放在同一排還是疊在一起? – anthonygore
在同一行中。我認爲這些盒子應該有一些最小寬度。例如:當盒子的寬度小於20%時,例如,它跳到下一行,其中有兩個盒子,而不是三個盒子。我希望你明白:-) – Morten
和你想要的文本? – anthonygore