Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

center a row using Bootstrap 3

How to center a row (12 column) in Bootstrap 3 ? I do not want to use the offset

I am using this way but not worked.

    .col-centered{          float: none;          margin: 0 auto;      }
    <div class="row" style="max-width: 300px;">          <div class="col-md-12 col-xs-12 col-centered">              <div class="input-group">                  <div class="input-group-btn">                      <button id="ItemForSearch" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">                          All Items                                       <span class="caret"></span>                      </button>                      <ul id="NormalSearch" class="dropdown-menu customize-dropdown-menu">                          <li><a href="#"> Test 1 </a></li>          <li><a href="#"> Test 2 </a></li>          <li><a href="#"> Test 3 </a></li>          <li><a href="#"> Test 4 </a></li>                      </ul>                  </div>                  <!-- /btn-group -->                  <input type="text" class="form-control">                  <span class="input-group-btn">                      <button class="btn btn-default" type="button">                          <i class="fa fa-search"></i>                      </button>                  </span>              </div>          </div>      </div>

Is there any solution to this? I have not an idea for this work.

like image 261
john Avatar asked Nov 12 '13 22:11

john


People also ask

How do I center a row in Bootstrap?

1 — Vertical Center Using Auto Margins One way to vertically center is to use my-auto . This will center the element within it's flexbox container (The Bootstrap 4 . row is display:flex ). For example, h-100 makes the row full height, and my-auto will vertically center the col-sm-12 column.

How do I center a row vertically in Bootstrap 3?

row is now display:flex you can simply use align-self-center on any column to vertically center it... or, use align-items-center on the entire . row to vertically center align all col-* in the row...

How do I center something in Bootstrap?

Add class . text-center to the parent div to align text or any item inside to the center. You can also decide how the alignment should look like on the specific screen sizes.


2 Answers

Why not using the grid system?

The bootstrap grid system consist of 12 columns, so if you use the "Medium" columns it will have a 970px width size.

Then you can divide it to 3 columns (12/3=4) so use 3 divs with "col-md-4" class:

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

Each one will have 323px max width size. Keep the first and the last empty and use the middle one to get your content centerd:

<div class="col-md-4"></div> <div class="col-md-4">    <p>Centered content.</p> </div> <div class="col-md-4"></div> 
like image 72
Waleed Asender Avatar answered Sep 16 '22 12:09

Waleed Asender


What you are doing is not working, because you apply the margin: auto to the full-width column.

Wrap it in a div and center that one. E.g:

<div class="i-am-centered">   <div class="row">...</div> </div> 

.

.i-am-centered { margin: auto; max-width: 300px;} 

http://www.bootply.com/93751

Its a cleaner solution anyway, as it is more expressive and as you usually don't want to mess with the grid.

like image 32
hugo der hungrige Avatar answered Sep 16 '22 12:09

hugo der hungrige