我有以下問題,我爲XS和SM顯示了一個元素,但是對於MD我想在左邊顯示一個圖像,右邊顯示兩個元素,我不能找不到適合第二欄的方法。這是我想要做的右邊的自舉兩列
Mobile (this is working)
----------------------
*Title*
*Description*
*Image*
*Icons*
----------------------
Now for >= MD (Not Working)
----------------------
*Image* | *Title*
| *Description*
| *Icons*
----------------------
我找不到適合描述和標題下的圖標的方法。這裏是我的代碼:
<div class="row">
<div class="col-xs-offset-1 col-xs-10 col-md-offset-0 col-md-6 col-md-push-6">
<h2>Title</h2>
<p>Data</p>
</div>
<div class="col-xs-offset-1 col-xs-10 col-md-offset-0 col-md-pull-6 col-md-6 col-lg-offset-1 main-tour">
<img class="img-responsive center-block" src="https://www.a1smallbusinessmarketing.com/images/prosbo_hires.jpg"/>
</div>
<div class="main-tour">
<div class="col-xs-12 col-md-5 col-lg-offset-1 items m-t-3">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
</div>
</div>
任何想法如何實現這一點的?
如果它固定您的問題請標明是正確的,投票向上或告訴我更多,如果有任何問題;) –