Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to do a line break in Bootstrap 3.3.7

How can I do a line break in bootstrap?, I could just use <br> but I would like to know if I can do this with boostrap and avoid insert <br> in my code.

I would like a empty space beetween the button and col-md-12

jsfiddle: https://jsfiddle.net/y9mznrna/

css:

.col-md-8 {
  border: 1px solid red;
}

.col-md-4 {
  border: 1px solid blue;
}

html:

<div class="col-md-12">
  <h2>test</h2>
  <div class="headline-date">Tuesday
    <button type="button" class="btn btn-primary pull-right">
      <i class="fa fa-user-plus " aria-hidden="true"></i>Call
    </button>
  </div>
</div>

<div class="row">
  <div class="col-md-12">
    <!-- members table -->
    <div class="col-md-8">
      1
    </div>

    <div class="col-md-4">
      2
    </div>

  </div>
</div>
like image 398
raduken Avatar asked Dec 04 '25 14:12

raduken


2 Answers

First of all, the button should be inside it's own row. Right now you just have an orphaned col-xs-12 which violates the Bootstrap standards. So doing that will separate them better. After that you need some margin between them

<div class="row">
<div class="col-md-12">
  <h2>test</h2>
  <div class="headline-date">Tuesday
    <button type="button" class="btn btn-primary pull-right">
      <i class="fa fa-user-plus " aria-hidden="true"></i>Call
    </button>
  </div>
</div>
</div>
<div class="row">
  <div class="col-md-12 ">
    <!-- members table -->
    <div class="col-md-8">
      1
    </div>

    <div class="col-md-4">
      2
    </div>

  </div>
</div>

And styling:

.col-md-8 {
  border: 1px solid red;
}

.col-md-4 {
  border: 1px solid blue;
}

.headline-date { 
  margin-bottom: 30px;
}

Example: https://jsfiddle.net/y9mznrna/1/

like image 56
DavidG Avatar answered Dec 06 '25 10:12

DavidG


You can use an empty col with a defined height, like this:

HTML:

<div class="row">
  <div class="col-md-12 bs-linebreak">
  </div>
</div>

CSS:

.bs-linebreak {
  height:10px;
}

Example: https://jsfiddle.net/cyo5xbef/2/

like image 35
PinguinoSod Avatar answered Dec 06 '25 11:12

PinguinoSod



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!