如何删除或减少bootstrap中的空白区域?

时间:2016-08-03 06:43:07

标签: javascript html css html5 twitter-bootstrap

enter image description here

如何删除或减少引导程序中的空白区域。就像我在下面添加另一个div一样。它之间的差距很大......

<div class="edit-profile">
  <form action="#" id="sky-form3" class="sky-form">
    <header>Checkout form</header>

    <fieldset>

      <div class="row">
        <section class="col-md-4 nopadding">
          <label class="input">
            <i class="icon-prepend fa fa-user"></i>
            <input type="text" name="fname" placeholder="First name">
          </label>
        </section>
        <section class="col-md-4 nopadding">
          <label class="input">
            <i class="icon-prepend fa fa-user"></i>
            <input type="text" name="lname" placeholder="Last name">
          </label>
        </section>
      </div>
    </fieldset>
  </form>
</div>

1 个答案:

答案 0 :(得分:0)

rowcol类的div上有一个no-padding类,其内容为

.no-padding{
 padding: 0px !important;
}