twitter-bootstrap – 在Bootstrap的div中左对齐和右对齐

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 在Bootstrap的div中左对齐和右对齐前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么是一些常见的方式左对齐一些文本和右对齐一些div容器内的其他文本在引导?

例如

Total cost                   $42

以上总成本应为左对齐文本,$ 42为右对齐文本

解决方法

使用右键类。
<div class="container">
  <div class="row">
    <div class="col-md-6">Total cost</div>
    <div class="col-md-6"><span class="pull-right">$42</span></div>
  </div>
</div>

Demo

你也可以像这样使用文本正确的类:

<div class="row">
    <div class="col-md-6">Total cost</div>
    <div class="col-md-6 text-right">$42</div>
  </div>

Demo

原文链接:https://www.f2er.com/bootstrap/234847.html

猜你在找的Bootstrap相关文章