私は2列のレイアウトを持っています(流動的な左、固定された右)。
Fluid 列に 3 つの div を続けて配置して、十分なスペースがある間にラッパーの中央に配置し、左側に配置する必要があります。
<div class="wrapper">
Wrapper
<div class="header">
header
</div>
<div class="wrapleft">
<div class="left">
<div class="subwrapper">
<div class="first">Once this reach the left border, it should stay there.</div>
<div class="second">This one should go under the blue div when there is not enough space for two divs and stay left aligned.</div>
<div class="third">This one should go under the blue div when there is not enough space for three divs and stay left aligned.</div>
</div>
</div>
</div>
<div class="right">
right
</div>
<div class="footer">
footer
</div>
.wrapper{
width: 100%;
margin: 0 auto;
text-align:center;
}
.header{
float: left;
width: 100%;
background-color: #f4f4f4;
text-align:left;
}
.wrapleft{
float: left;
width: 100%;
background-color: #cfcfcf;
text-align:center;
}
.left{
margin-right: 250px;
background-color: #afeeee;
height: 200px;
text-align:right;
}
.right{
float: right;
width: 240px;
margin-left: -240px;
background-color: #98fb98;
height: 200px;
}
.footer{
float: left;
width: 100%;
background-color: #f4f4f4;
}
body {
padding: 0px;
margin: 0px;
}
.subwrapper div {
height: 100px;
width:200px;
margin: 0 auto;
text-align:center;
color:white;
display: inline-block;
vertical-align:top;
}
.subwrapper {
width:100%;
background:purple;
max-width:100%;
}
.first {
background:blue;
}
.second {
background:green;
}
.third {
background:red;
}
これは私が何を意味するのかを明確にするjsfiddleですhttp://jsfiddle.net/notme/SZjJG/
実際には最初の部分を取得できますが、スペースがなくなると左側のdivを揃えることができません。
幅は動的であるため、メディアクエリを使用できません。
更新
私は物事を明確にするためにいくつかの写真を追加しようとします.
大解像度: 3 つの div が中央に配置されます
中解像度: 3 つの div が幅に収まります
小さな解像度: 3 つの div は左側にとどまる必要があります。左余白を黄色で丸くしたくありません。