【发布时间】:2019-02-20 18:20:06
【问题描述】:
在我有两个 div 的 Bootstrap 上遇到问题:(A) as col-lg-6 & (B) as col-lg-6 在大型设备上。
将呈现:(A)(B)
我希望在移动设备或小型设备上显示切换 div 的顺序? col-sm-12
将呈现:(B) (A) *(显示在彼此之上)
<section class="about-page">
<div class="container">
<div class="row mineral_padding">
<div class="col-lg-6 col-sm-12 order-1 wow fadeInLeft">
<div class="about_us mineral_margin">
<div class="about_slide">
<div>
<h5>A
</h5>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-12 order-12 wow fadeInRight">B</div>
</div>
</div>
</section>
我正在使用 Bootstrap v4.0.0-alpha.6(此处不再赘述)
谢谢大家
【问题讨论】:
标签: html bootstrap-4