Bootstrap 3: the new grid system, for starters

Baby steps

It’s super easy to put together a basic page with Bootstrap.
Just fire up your editor and type in this markup:

This is it. There are just two requirements for a basic Bootstrap page:

  1. HTML5: achieved declaring a  <!DOCTYPE html>
  2. Bootstrap CSS

Take a look at the page in a browser, and you’ll see a lonely — but stylish —  Hello, world!.

Hello, world!
Hello, world! 

Heads up!  You’d better serve these pages locally.
If you have ruby, your best bet is to  gem install serve  and then launch  serve .  from the directory where your HTML file resides.
Then point your browser to http://localhost:4000/ and you are golden.

If you can’t or don’t want to serve your pages locally, then please change every protocol relative URL in the sources to its more classic variant, or your browser may not be able to find those resources.

Example: change  //netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css  tohttp://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css.

Adding some beef

You are going to see the grid system in action very soon, but first you need to beef up your page with some random content.

I’ll take mine from  hipsteripsum.me, but the classic  www.lipsum.com  or any editor plugin will be fine as well.

Here comes the grid

Let’s start with a very simple layout: two columns, two paragraphs per column.

A basic grid
A basic grid 

The details

First of all, we added a  <div class="container">...</div>  container element to ensure proper centering and maximum width for the layout. That’s your playground.

Once you have a container in place, you just have to start thinking in terms of rows  <div class="row">...</div>, and columns inside the rows  <div class="col-md-6">...</div>.

Keep in mind that every row in the grid is made up of 12 units, and you can define the desired size of your columns using those units.

In the previous example you had two columns, each being 6 units wide:  col-md-6.
As you know,  6 + 6 = 12, and that’s exactly why you had two equally large columns (col-md-6) in a row taking the whole width (12) of the container element.

Go on, try some more combinations like  <div class="col-md-3">...</div> <div class="col-md-9">...</div>  or<div class="col-md-7">...</div> <div class="col-md-5">...</div>  and take a look at the results in your browser.
Experiment a bit. Just keep in mind that the sum must always be 12.

If you’re feeling brave you could also have more than two columns in the same row, adjusting the column classes accordingly.
Hint:  3 + 3 + 1 + 5 = 12.

As you may have guessed, if you need to add another row below the first one, you can. Add as much rows as you want.

Nesting

Need to nest a row into another? Bootstrap 3 has you covered.

Let’s see this in action by producing a layout having two columns, with the second one being splitted into four boxes over two rows.

Nested grids galore!
Nested grids galore! 

Offsetting

You can also move columns to the right using  .col-md-offset-N  where  N, ranging from  1  to  11, is the number of units you want the column to be moved.

Offsetting comes in handy when you need to center an element.

Say you have a  <div class="col-md-6">...</div>.
Centering it, is as easy as adding  .col-md-offset-3:

Centering columns with clever use of offsets 

That’s because you have a total width of  12  units, and a  6  units wide element you want to center. Thus, you split the remaining  6  units in two, and here’s your offset for centering the element.  3 + 6 + 3 = 12.

Ordering

Another nice feature of the grid system is that you can easily write the columns in an order, and show them in another one.

So if you have a two-columns layout with the left column being the narrowest and acting as a sidebar:

You can swap the order of the columns using  .col-md-push-N  and  .col-md-pull-N.
Once again,  N  is a number from  1  to  11:

And your sidebar is now to the right
Fonte: http://www.williamghelfi.com/blog/2013/06/09/bootstrap-3-the-new-grid-system-for-starters/ 

Facebook Comments
Rate this post