左对齐dl-horizo​​ntal,dt和dd

时间:2016-02-19 04:50:54

标签: css twitter-bootstrap twitter-bootstrap-3 text-align

我在面板中工作,无法在Bootstrap中左对齐或删除水平列表的边距。

<div class="container">
  <div class="panel panel-primary">
    <div class="panel-heading">
      <h3 class="panel-title">
        <strong>testing</strong>
      </h3>
    </div>
    <div class="panel-body">
      <dl class="dl-horizontal">
        <dt>term 1</dt>
        <dd>foo</dd>
        <dt>term 2</dt>
        <dd>bar</dd>
      </dl>
    </div>
  </div>
</div>

https://jsfiddle.net/srzyL86g/

1 个答案:

答案 0 :(得分:2)

解决了这里。 https://jsfiddle.net/adityap708/9k0qg8jn/

.container dt,.container dd {
  width:auto;
  margin-left:auto;
  display:inline-block;
}

将此添加到您的CSS。 Boostrap正在提供dtdd widthmargin,您需要覆盖它。