【问题标题】:Bootstrap 3.0 : plot left div on bottom in mobile viewBootstrap 3.0:在移动视图的底部绘制左 div
【发布时间】:2017-05-21 20:58:28
【问题描述】:

我有 2 个这样的 div

<div class="row">
   <div class="col-sm-6 col-xs-12"><img src="..."></div>
   <div class="col-sm-6 col-xs-12">Content about image goes here </div>
</div>

现在在移动图像上,然后是内容,我希望图像在响应模式下出现在内容之后,如何做到。

【问题讨论】:

标签: html css twitter-bootstrap responsive-design


【解决方案1】:

解决方案:

<div class="row">
   <div class="col-sm-6 col-xs-12 col-sm-push-6">Content about image goes here </div>
   <div class="col-sm-6 col-xs-12 col-sm-pull-6"><img src="..."></div>
</div>

【讨论】:

    猜你喜欢
    • 2018-08-03
    • 1970-01-01
    • 1970-01-01
    • 2011-08-21
    • 2014-02-24
    • 1970-01-01
    • 1970-01-01
    • 2015-03-31
    • 2021-10-06
    相关资源
    最近更新 更多