/// Lightweight defaults Same markup, different classes企鹅竞猜币怎么提现手机注册
企鹅竞猜币怎么提现线路检测中心
All nav components here—tabs, pills, and lists—企鹅竞猜币怎么提现线路检测中心 through the .nav
class.
企鹅竞猜币怎么提现线路检测中心
Tabs and pills are great for sections of content or navigating between pages of related content.
企鹅竞猜币怎么提现ios软件
To align nav links, use the .pull-left
or .pull-right
utility classes. Both classes will add a CSS float in the specified direction.
企鹅竞猜币怎么提现ios软件
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>
企鹅竞猜币怎么提现ios软件
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>
/// Stackable Make tabs or pills vertical企鹅竞猜币怎么提现官网ios
企鹅竞猜币怎么提现地址娱乐
As tabs and pills are horizontal by default, just add a second class, .nav-stacked
, to make them appear vertically stacked.
企鹅竞猜币怎么提现娱乐
<ul class="nav nav-tabs nav-stacked">
...
</ul>
企鹅竞猜币怎么提现安卓娱乐
<ul class="nav nav-pills nav-stacked">
...
</ul>
/// Dropdowns For advanced nav components企鹅竞猜币怎么提现客户端代理
企鹅竞猜币怎么提现网址客户端
Dropdown menus in Bootstrap tabs and pills are super easy and require only a little extra HTML and a lightweight jQuery plugin.
Head over to the Javascript page to read the docs on initializing dropdowns in Bootstrap.
企鹅竞猜币怎么提现手机网址
<ul class="nav nav-tabs">
<li class="dropdown">
<a class="dropdown-toggle"
data-toggle="dropdown"
href="#">
Dropdown
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<!-- links -->
</ul>
</li>
</ul>
企鹅竞猜币怎么提现注册娱乐
<ul class="nav nav-pills">
<li class="dropdown">
<a class="dropdown-toggle"
data-toggle="dropdown"
href="#">
Dropdown
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<!-- links -->
</ul>
</li>
</ul>
/// Nav lists Build simple stacked navs, great for sidebars企鹅竞猜币怎么提现网址客户端
企鹅竞猜币怎么提现app注册
Nav lists provide a simple and easy way to build groups of nav links with optional headers. They're best used in sidebars like the Finder in OS X.
Structurally, they're built on the same core nav styles as tabs and pills, so usage and customization are straightforward.
企鹅竞猜币怎么提现网站在线
Nav lists are also easy to equip with icons. Add the proper <i>
tag with class and you're set.
企鹅竞猜币怎么提现app注册
Add a horizontal divider by creating an empty list item with the class .divider
, like so:
<ul class="nav nav-list">
...
<li class="divider"></li>
...
</ul>
企鹅竞猜币怎么提现手机注册
Take a list of links and add class="nav nav-list"
:
<ul class="nav nav-list">
<li class="nav-header">
List header
</li>
<li class="active">
<a href="#">Home</a>
</li>
<li>
<a href="#">Library</a>
</li>
...
</ul>
企鹅竞猜币怎么提现地址官方
Same example, but with <i>
tags for icons.
<ul class="nav nav-list">
...
<li>
<a href="#">
<i class="icon-book"></i>
Library
</a>
</li>
...
</ul>
/// Tabbable nav Bring tabs to life via javascript企鹅竞猜币怎么提现地址登录
企鹅竞猜币怎么提现官网
Bring your tabs to life with a simple plugin to toggle between content via tabs. Bootstrap integrates tabbable tabs in four styles: top (default), right, bottom, and left.
Changing between them is easy and only requires changing very little markup.
企鹅竞猜币怎么提现网址客户端
To make tabs tabbable, wrap the .nav-tabs
in another div with class .tabbable
.
What up girl, this is Section 3.
企鹅竞猜币怎么提现注册娱乐
All tabbable tabs are powered by our lightweight jQuery plugin. Read more about how to bring tabbable tabs to life on the javascript docs page.
Get the javascript →
企鹅竞猜币怎么提现线路检测中心
Using tabbable tabs requires a wrapping div, a set of tabs, and a set of tabbable panes of content.
<div class="tabbable">
<ul class="nav nav-tabs">
<li class="active"><a href="#1" data-toggle="tab">Section 1</a></li>
<li><a href="#2" data-toggle="tab">Section 2</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="1">
<p>I'm in Section 1.</p>
</div>
<div class="tab-pane" id="2">
<p>Howdy, I'm in Section 2.</p>
</div>
</div>
</div>
企鹅竞猜币怎么提现娱乐
企鹅竞猜币怎么提现地址网站
Flip the order of the HTML and add a class to put tabs on the bottom.
What up girl, this is Section C.
<div class="tabbable tabs-below">
<div class="tab-content">
...
</div>
<ul class="nav nav-tabs">
...
</ul>
</div>
企鹅竞猜币怎么提现app注册
Swap the class to put tabs on the left.
What up girl, this is Section C.
<div class="tabbable tabs-left">
<ul class="nav nav-tabs">
...
</ul>
<div class="tab-content">
...
</div>
</div>
企鹅竞猜币怎么提现线路代理
Swap the class to put tabs on the right.
What up girl, this is Section C.
<div class="tabbable tabs-right">
<ul class="nav nav-tabs">
...
</ul>
<div class="tab-content">
...
</div>
</div>
企鹅竞猜币怎么提现娱乐
Breadcrumb navigation is used as a way to show users where they are within an app or a site, but not for primary navigation. Keep their use sparse and succinct to be most effective.
企鹅竞猜币怎么提现网站在线
A single example shown as it might be displayed across multiple pages.
企鹅竞猜币怎么提现网址客户端
HTML is your standard unordered list with links.
<ul class="breadcrumb">
<li>
<a href="#">Home</a> <span class="divider">/</span>
</li>
<li>
<a href="#">Library</a> <span class="divider">/</span>
</li>
<li class="active">Data</li>
</ul>