Bem-vindo ao WordPress. Esse é o seu primeiro post. Edite-o ou exclua-o, e comece a publicar!
<div class="navbar navbar-fixed-top"> ... </div>
Tabbable example
To make tabs tabbable, wrap the .nav-tabs in another div with class .tabbable.
I'm in Section 1.
Howdy, I'm in Section 2.
What up girl, this is Section 3.
Lightweight defaults Same markup, different classes
Powerful base class
All nav components here—tabs, pills, and lists—share the same base markup and styles through the .nav class.
When to use
Tabs and pills are great for sections of content or navigating between pages of related content.
Component alignment
To align nav links, use the .pull-left or .pull-right utility classes. Both classes will add a CSS float in the specified direction.
Basic tabs
Take a regular <ul> of links and add .nav-tabs:
<ul class="nav nav-tabs">
<li class="active">
<a href="#">Home</a>
</li>
<li><a href="#">...</a></li>
<li><a href="#">...</a></li>
</ul>
Basic pills
Take that same HTML, but use .nav-pills instead:
<ul class="nav nav-pills">
<li class="active">
<a href="#">Home</a>
</li>
<li><a href="#">...</a></li>
<li><a href="#">...</a></li>
</ul>