我知道Bootstrap是第一個設計的移動設備。我想知道只有Bootstrap的CSS類可能的佈局是否可行?上大小col-md
或更大Bootstrap佈局混亂
圖A
而當屏幕是col-sm
或col-xs
,轉到B或C(2個不同的解決方案)。
我正在爲A-> B和A-> C尋找正確的div
佈局。
每個部分的高度是隨機的,因爲它們中生成的內容將是動態的。我在div中添加了填充高度,但它們是動態的,無法設置。
下不工作...
小提琴...... https://jsfiddle.net/s4jj30wf/
<div class="row">
<div style="background:blue" class="col-xs-12 col-md-4">
<div style="height:100px"></div>
</div>
<div style="background:yellow" class="col-md-8 col-xs-12">
<div class="row">
<div style="background:green" class="col-md-12 col-xs-12">
<div style="height:20px"></div>
</div>
<div style="background:pink" class="col-md-12 col-xs-12">
<div style="height:100px"></div>
</div>
<div style="background:red" class="col-md-12 col-xs-12">
<div style="height:100px"></div>
</div>
</div>
</div>
<div style="background:orange" class="col-md-4 col-md-pull-4 col-xs-12">
<div style="height:50px"></div>
</div>
</div>
請分享您迄今爲止建立的代碼。 –
@NasirT代碼已添加。 – mattjvincent