This is it. There are just two requirements for a basic Bootstrap page:
HTML5: achieved declaring a<!DOCTYPE html>
Bootstrap CSS
Take a look at the page in a browser, and you’ll see a lonely — but stylish —Hello, world!.
Hello, world!
Heads up!You’d better serve these pages locally.
If you have ruby, your best bet is togem install serveand then launchserve .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.
<p>Asymmetrical YOLO banjo lomo fanny pack,shoreditch flexitarian dreamcatcher ethnic kitsch sriracha nisi sustainable swag.Cliche90's farm-to-table master cleanse Pinterest jean shorts. Cillum raw denim aesthetic sunt.</p>
<p>Aliqua photo booth literally veniam minim leggings, est craft beer banjo intelligentsia Truffaut officia. Irony minim 3 wolf moon meggings, viral hella hoodie selvage flexitarian small batch pariatur.</p>
</div>
<div class="col-md-6">
<p>Consectetur art party Tonx culpa semiotics. Pinterest assumenda minim organic quis.</p>
<p>Wayfarers selvage YOLO, commodo assumenda eu est bespoke mlkshk. Helvetica reprehenderit iPhone, aesthetic 90'sliterally chambray bicycle rights viral blog voluptate.Occupy bespoke stumptown duis keytar vero.</p>
</div>
</div>
</div>
</body>
</html>
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.
That’s because you have a total width of12units, and a6units wide element you want to center. Thus, you split the remaining6units 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:
1
2
3
4
<div class="row">
<div class="col-md-4">...</div>
<div class="col-md-8">...</div>
</div>
You can swap the order of the columns using.col-md-push-Nand.col-md-pull-N.
Once again,Nis a number from1to11: