Bootstrap 3中有没有办法右对齐div?
我知道偏移的可能性,但我想将格式化的 div 对齐到其容器的右侧,同时它应该在全角移动视图中居中。'pull-right' 类不再起作用了。他们是否忘记更换它或者我遗漏了一些明显的东西?
<div class="row">
<div class="container">
<div class="col-md-4">
left content
</div>
<div class="col-md-4 col-md-offset-4">
<!-- The next div has a background color and its own paddings and should be aligned right-->
<!-- It is now in the right column but aligned left in that column -->
<div class="yellow_background">right content</div>
</div>
</div>
</div>
Shure 我知道如何在 CSS 中做到这一点,但它可以在纯 bootstrap 3 中完成吗?