Stripped personal data from development repository
Samo Penic
2019-02-20 83c3f647c35477564b77cbc5b36d37d793d5442a
commit | author | age
83c3f6 1 ---
SP 2 layout: docs
3 title: Navs
4 description: Documentation and examples for how to use Bootstrap's included navigation components.
5 group: components
6 toc: true
7 ---
8
9 ## Base nav
10
11 Navigation available in Bootstrap share general markup and styles, from the base `.nav` class to the active and disabled states. Swap modifier classes to switch between each style.
12
13 The base `.nav` component is built with flexbox and provide a strong foundation for building all types of navigation components. It includes some style overrides (for working with lists), some link padding for larger hit areas, and basic disabled styling.
14
15 {% capture callout %}
16 The base `.nav` component does not include any `.active` state. The following examples include the class, mainly to demonstrate that this particular class does not trigger any special styling.
17 {% endcapture %}
18 {% include callout.html content=callout type="info" %}
19
20 {% capture example %}
21 <ul class="nav">
22   <li class="nav-item">
23     <a class="nav-link active" href="#">Active</a>
24   </li>
25   <li class="nav-item">
26     <a class="nav-link" href="#">Link</a>
27   </li>
28   <li class="nav-item">
29     <a class="nav-link" href="#">Link</a>
30   </li>
31   <li class="nav-item">
32     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
33   </li>
34 </ul>
35 {% endcapture %}
36 {% include example.html content=example %}
37
38 Classes are used throughout, so your markup can be super flexible. Use `<ul>`s like above, `<ol>` if the order of your items is important, or roll your own with a `<nav>` element. Because the `.nav` uses `display: flex`, the nav links behave the same as nav items would, but without the extra markup.
39
40 {% capture example %}
41 <nav class="nav">
42   <a class="nav-link active" href="#">Active</a>
43   <a class="nav-link" href="#">Link</a>
44   <a class="nav-link" href="#">Link</a>
45   <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
46 </nav>
47 {% endcapture %}
48 {% include example.html content=example %}
49
50 ## Available styles
51
52 Change the style of `.nav`s component with modifiers and utilities. Mix and match as needed, or build your own.
53
54 ### Horizontal alignment
55
56 Change the horizontal alignment of your nav with [flexbox utilities]({{ site.baseurl }}/docs/{{ site.docs_version }}/layout/grid/#horizontal-alignment). By default, navs are left-aligned, but you can easily change them to center or right aligned.
57
58 Centered with `.justify-content-center`:
59
60 {% capture example %}
61 <ul class="nav justify-content-center">
62   <li class="nav-item">
63     <a class="nav-link active" href="#">Active</a>
64   </li>
65   <li class="nav-item">
66     <a class="nav-link" href="#">Link</a>
67   </li>
68   <li class="nav-item">
69     <a class="nav-link" href="#">Link</a>
70   </li>
71   <li class="nav-item">
72     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
73   </li>
74 </ul>
75 {% endcapture %}
76 {% include example.html content=example %}
77
78 Right-aligned with `.justify-content-end`:
79
80 {% capture example %}
81 <ul class="nav justify-content-end">
82   <li class="nav-item">
83     <a class="nav-link active" href="#">Active</a>
84   </li>
85   <li class="nav-item">
86     <a class="nav-link" href="#">Link</a>
87   </li>
88   <li class="nav-item">
89     <a class="nav-link" href="#">Link</a>
90   </li>
91   <li class="nav-item">
92     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
93   </li>
94 </ul>
95 {% endcapture %}
96 {% include example.html content=example %}
97
98 ### Vertical
99
100 Stack your navigation by changing the flex item direction with the `.flex-column` utility. Need to stack them on some viewports but not others? Use the responsive versions (e.g., `.flex-sm-column`).
101
102 {% capture example %}
103 <ul class="nav flex-column">
104   <li class="nav-item">
105     <a class="nav-link active" href="#">Active</a>
106   </li>
107   <li class="nav-item">
108     <a class="nav-link" href="#">Link</a>
109   </li>
110   <li class="nav-item">
111     <a class="nav-link" href="#">Link</a>
112   </li>
113   <li class="nav-item">
114     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
115   </li>
116 </ul>
117 {% endcapture %}
118 {% include example.html content=example %}
119
120 As always, vertical navigation is possible without `<ul>`s, too.
121
122 {% capture example %}
123 <nav class="nav flex-column">
124   <a class="nav-link active" href="#">Active</a>
125   <a class="nav-link" href="#">Link</a>
126   <a class="nav-link" href="#">Link</a>
127   <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
128 </nav>
129 {% endcapture %}
130 {% include example.html content=example %}
131
132 ### Tabs
133
134 Takes the basic nav from above and adds the `.nav-tabs` class to generate a tabbed interface. Use them to create tabbable regions with our [tab JavaScript plugin](#javascript-behavior).
135
136 {% capture example %}
137 <ul class="nav nav-tabs">
138   <li class="nav-item">
139     <a class="nav-link active" href="#">Active</a>
140   </li>
141   <li class="nav-item">
142     <a class="nav-link" href="#">Link</a>
143   </li>
144   <li class="nav-item">
145     <a class="nav-link" href="#">Link</a>
146   </li>
147   <li class="nav-item">
148     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
149   </li>
150 </ul>
151 {% endcapture %}
152 {% include example.html content=example %}
153
154 ### Pills
155
156 Take that same HTML, but use `.nav-pills` instead:
157
158 {% capture example %}
159 <ul class="nav nav-pills">
160   <li class="nav-item">
161     <a class="nav-link active" href="#">Active</a>
162   </li>
163   <li class="nav-item">
164     <a class="nav-link" href="#">Link</a>
165   </li>
166   <li class="nav-item">
167     <a class="nav-link" href="#">Link</a>
168   </li>
169   <li class="nav-item">
170     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
171   </li>
172 </ul>
173 {% endcapture %}
174 {% include example.html content=example %}
175
176 ### Fill and justify
177
178 Force your `.nav`'s contents to extend the full available width one of two modifier classes. To proportionately fill all available space with your `.nav-item`s, use `.nav-fill`. Notice that all horizontal space is occupied, but not every nav item has the same width.
179
180 {% capture example %}
181 <ul class="nav nav-pills nav-fill">
182   <li class="nav-item">
183     <a class="nav-link active" href="#">Active</a>
184   </li>
185   <li class="nav-item">
186     <a class="nav-link" href="#">Longer nav link</a>
187   </li>
188   <li class="nav-item">
189     <a class="nav-link" href="#">Link</a>
190   </li>
191   <li class="nav-item">
192     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
193   </li>
194 </ul>
195 {% endcapture %}
196 {% include example.html content=example %}
197
198 When using a `<nav>`-based navigation, be sure to include `.nav-item` on the anchors.
199
200 {% capture example %}
201 <nav class="nav nav-pills nav-fill">
202   <a class="nav-item nav-link active" href="#">Active</a>
203   <a class="nav-item nav-link" href="#">Link</a>
204   <a class="nav-item nav-link" href="#">Link</a>
205   <a class="nav-item nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
206 </nav>
207 {% endcapture %}
208 {% include example.html content=example %}
209
210 For equal-width elements, use `.nav-justified`. All horizontal space will be occupied by nav links, but unlike the `.nav-fill` above, every nav item will be the same width.
211
212 {% capture example %}
213 <nav class="nav nav-pills nav-justified">
214   <a class="nav-link active" href="#">Active</a>
215   <a class="nav-link" href="#">Longer nav link</a>
216   <a class="nav-link" href="#">Link</a>
217   <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
218 </nav>
219 {% endcapture %}
220 {% include example.html content=example %}
221
222 Similar to the `.nav-fill` example using a `<nav>`-based navigation, be sure to include `.nav-item` on the anchors.
223
224 {% capture example %}
225 <nav class="nav nav-pills nav-justified">
226   <a class="nav-item nav-link active" href="#">Active</a>
227   <a class="nav-item nav-link" href="#">Link</a>
228   <a class="nav-item nav-link" href="#">Link</a>
229   <a class="nav-item nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
230 </nav>
231
232 {% endcapture %}
233 {% include example.html content=example %}
234 ## Working with flex utilities
235
236 If you need responsive nav variations, consider using a series of [flexbox utilities]({{ site.baseurl }}/docs/{{ site.docs_version }}/utilities/flex/). While more verbose, these utilities offer greater customization across responsive breakpoints. In the example below, our nav will be stacked on the lowest breakpoint, then adapt to a horizontal layout that fills the available width starting from the small breakpoint.
237
238 {% capture example %}
239 <nav class="nav nav-pills flex-column flex-sm-row">
240   <a class="flex-sm-fill text-sm-center nav-link active" href="#">Active</a>
241   <a class="flex-sm-fill text-sm-center nav-link" href="#">Link</a>
242   <a class="flex-sm-fill text-sm-center nav-link" href="#">Link</a>
243   <a class="flex-sm-fill text-sm-center nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
244 </nav>
245 {% endcapture %}
246 {% include example.html content=example %}
247
248 ## Regarding accessibility
249
250 If you're using navs to provide a navigation bar, be sure to add a `role="navigation"` to the most logical parent container of the `<ul>`, or wrap a `<nav>` element around the whole navigation. Do not add the role to the `<ul>` itself, as this would prevent it from being announced as an actual list by assistive technologies.
251
252 Note that navigation bars, even if visually styled as tabs with the `.nav-tabs` class, should **not** be given `role="tablist"`, `role="tab"` or `role="tabpanel"` attributes. These are only appropriate for dynamic tabbed interfaces, as described in the [<abbr title="Web Accessibility Initiative">WAI</abbr> <abbr title="Accessible Rich Internet Applications">ARIA</abbr> Authoring Practices](https://www.w3.org/TR/wai-aria-practices/#tabpanel). See [JavaScript behavior](#javascript-behavior) for dynamic tabbed interfaces in this section for an example.
253
254 ## Using dropdowns
255
256 Add dropdown menus with a little extra HTML and the [dropdowns JavaScript plugin]({{ site.baseurl }}/docs/{{ site.docs_version }}/components/dropdowns/#usage).
257
258 ### Tabs with dropdowns
259
260 {% capture example %}
261 <ul class="nav nav-tabs">
262   <li class="nav-item">
263     <a class="nav-link active" href="#">Active</a>
264   </li>
265   <li class="nav-item dropdown">
266     <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
267     <div class="dropdown-menu">
268       <a class="dropdown-item" href="#">Action</a>
269       <a class="dropdown-item" href="#">Another action</a>
270       <a class="dropdown-item" href="#">Something else here</a>
271       <div class="dropdown-divider"></div>
272       <a class="dropdown-item" href="#">Separated link</a>
273     </div>
274   </li>
275   <li class="nav-item">
276     <a class="nav-link" href="#">Link</a>
277   </li>
278   <li class="nav-item">
279     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
280   </li>
281 </ul>
282 {% endcapture %}
283 {% include example.html content=example %}
284
285 ### Pills with dropdowns
286
287 {% capture example %}
288 <ul class="nav nav-pills">
289   <li class="nav-item">
290     <a class="nav-link active" href="#">Active</a>
291   </li>
292   <li class="nav-item dropdown">
293     <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
294     <div class="dropdown-menu">
295       <a class="dropdown-item" href="#">Action</a>
296       <a class="dropdown-item" href="#">Another action</a>
297       <a class="dropdown-item" href="#">Something else here</a>
298       <div class="dropdown-divider"></div>
299       <a class="dropdown-item" href="#">Separated link</a>
300     </div>
301   </li>
302   <li class="nav-item">
303     <a class="nav-link" href="#">Link</a>
304   </li>
305   <li class="nav-item">
306     <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
307   </li>
308 </ul>
309 {% endcapture %}
310 {% include example.html content=example %}
311
312 ## JavaScript behavior
313
314 Use the tab JavaScript plugin—include it individually or through the compiled `bootstrap.js` file—to extend our navigational tabs and pills to create tabbable panes of local content, even via dropdown menus.
315
316 If you're building our JavaScript from source, it [requires `util.js`]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/javascript/#util).
317
318 Dynamic tabbed interfaces, as described in the [<abbr title="Web Accessibility Initiative">WAI</abbr> <abbr title="Accessible Rich Internet Applications">ARIA</abbr> Authoring Practices](https://www.w3.org/TR/wai-aria-practices/#tabpanel), require `role="tablist"`, `role="tab"`, `role="tabpanel"`, and additional `aria-` attributes in order to convey their structure, functionality and current state to users of assistive technologies (such as screen readers).
319
320 Note that dynamic tabbed interfaces should <em>not</em> contain dropdown menus, as this causes both usability and accessibility issues. From a usability perspective, the fact that the currently displayed tab's trigger element is not immediately visible (as it's inside the closed dropdown menu) can cause confusion. From an accessibility point of view, there is currently no sensible way to map this sort of construct to a standard WAI ARIA pattern, meaning that it cannot be easily made understandable to users of assistive technologies.
321
322 <div class="bd-example bd-example-tabs">
323   <ul class="nav nav-tabs" id="myTab" role="tablist">
324     <li class="nav-item">
325       <a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a>
326     </li>
327     <li class="nav-item">
328       <a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a>
329     </li>
330     <li class="nav-item">
331       <a class="nav-link" id="contact-tab" data-toggle="tab" href="#contact" role="tab" aria-controls="contact" aria-selected="false">Contact</a>
332     </li>
333   </ul>
334   <div class="tab-content" id="myTabContent">
335     <div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">
336       <p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p>
337     </div>
338     <div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">
339       <p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.</p>
340     </div>
341     <div class="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab">
342       <p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray yr.</p>
343     </div>
344   </div>
345 </div>
346
347 {% highlight html %}
348 <ul class="nav nav-tabs" id="myTab" role="tablist">
349   <li class="nav-item">
350     <a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a>
351   </li>
352   <li class="nav-item">
353     <a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a>
354   </li>
355   <li class="nav-item">
356     <a class="nav-link" id="contact-tab" data-toggle="tab" href="#contact" role="tab" aria-controls="contact" aria-selected="false">Contact</a>
357   </li>
358 </ul>
359 <div class="tab-content" id="myTabContent">
360   <div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">...</div>
361   <div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">...</div>
362   <div class="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab">...</div>
363 </div>
364 {% endhighlight %}
365
366 To help fit your needs, this works with `<ul>`-based markup, as shown above, or with any arbitrary "roll your own" markup. Note that if you're using `<nav>`, you shouldn't add `role="tablist"` directly to it, as this would override the element's native role as a navigation landmark. Instead, switch to an alternative element (in the example below, a simple `<div>`) and wrap the `<nav>` around it.
367
368 <div class="bd-example bd-example-tabs">
369   <nav>
370     <div class="nav nav-tabs" id="nav-tab" role="tablist">
371       <a class="nav-item nav-link active" id="nav-home-tab" data-toggle="tab" href="#nav-home" role="tab" aria-controls="nav-home" aria-selected="true">Home</a>
372       <a class="nav-item nav-link" id="nav-profile-tab" data-toggle="tab" href="#nav-profile" role="tab" aria-controls="nav-profile" aria-selected="false">Profile</a>
373       <a class="nav-item nav-link" id="nav-contact-tab" data-toggle="tab" href="#nav-contact" role="tab" aria-controls="nav-contact" aria-selected="false">Contact</a>
374     </div>
375   </nav>
376   <div class="tab-content" id="nav-tabContent">
377     <div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
378       <p>Et et consectetur ipsum labore excepteur est proident excepteur ad velit occaecat qui minim occaecat veniam. Fugiat veniam incididunt anim aliqua enim pariatur veniam sunt est aute sit dolor anim. Velit non irure adipisicing aliqua ullamco irure incididunt irure non esse consectetur nostrud minim non minim occaecat. Amet duis do nisi duis veniam non est eiusmod tempor incididunt tempor dolor ipsum in qui sit. Exercitation mollit sit culpa nisi culpa non adipisicing reprehenderit do dolore. Duis reprehenderit occaecat anim ullamco ad duis occaecat ex.</p>
379     </div>
380     <div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
381       <p>Nulla est ullamco ut irure incididunt nulla Lorem Lorem minim irure officia enim reprehenderit. Magna duis labore cillum sint adipisicing exercitation ipsum. Nostrud ut anim non exercitation velit laboris fugiat cupidatat. Commodo esse dolore fugiat sint velit ullamco magna consequat voluptate minim amet aliquip ipsum aute laboris nisi. Labore labore veniam irure irure ipsum pariatur mollit magna in cupidatat dolore magna irure esse tempor ad mollit. Dolore commodo nulla minim amet ipsum officia consectetur amet ullamco voluptate nisi commodo ea sit eu.</p>
382     </div>
383     <div class="tab-pane fade" id="nav-contact" role="tabpanel" aria-labelledby="nav-contact-tab">
384       <p>Sint sit mollit irure quis est nostrud cillum consequat Lorem esse do quis dolor esse fugiat sunt do. Eu ex commodo veniam Lorem aliquip laborum occaecat qui Lorem esse mollit dolore anim cupidatat. Deserunt officia id Lorem nostrud aute id commodo elit eiusmod enim irure amet eiusmod qui reprehenderit nostrud tempor. Fugiat ipsum excepteur in aliqua non et quis aliquip ad irure in labore cillum elit enim. Consequat aliquip incididunt ipsum et minim laborum laborum laborum et cillum labore. Deserunt adipisicing cillum id nulla minim nostrud labore eiusmod et amet. Laboris consequat consequat commodo non ut non aliquip reprehenderit nulla anim occaecat. Sunt sit ullamco reprehenderit irure ea ullamco Lorem aute nostrud magna.</p>
385     </div>
386   </div>
387 </div>
388
389 {% highlight html %}
390 <nav>
391   <div class="nav nav-tabs" id="nav-tab" role="tablist">
392     <a class="nav-item nav-link active" id="nav-home-tab" data-toggle="tab" href="#nav-home" role="tab" aria-controls="nav-home" aria-selected="true">Home</a>
393     <a class="nav-item nav-link" id="nav-profile-tab" data-toggle="tab" href="#nav-profile" role="tab" aria-controls="nav-profile" aria-selected="false">Profile</a>
394     <a class="nav-item nav-link" id="nav-contact-tab" data-toggle="tab" href="#nav-contact" role="tab" aria-controls="nav-contact" aria-selected="false">Contact</a>
395   </div>
396 </nav>
397 <div class="tab-content" id="nav-tabContent">
398   <div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">...</div>
399   <div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">...</div>
400   <div class="tab-pane fade" id="nav-contact" role="tabpanel" aria-labelledby="nav-contact-tab">...</div>
401 </div>
402 {% endhighlight %}
403
404 The tabs plugin also works with pills.
405
406 <div class="bd-example bd-example-tabs">
407   <ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
408     <li class="nav-item">
409       <a class="nav-link active" id="pills-home-tab" data-toggle="pill" href="#pills-home" role="tab" aria-controls="pills-home" aria-selected="true">Home</a>
410     </li>
411     <li class="nav-item">
412       <a class="nav-link" id="pills-profile-tab" data-toggle="pill" href="#pills-profile" role="tab" aria-controls="pills-profile" aria-selected="false">Profile</a>
413     </li>
414     <li class="nav-item">
415       <a class="nav-link" id="pills-contact-tab" data-toggle="pill" href="#pills-contact" role="tab" aria-controls="pills-contact" aria-selected="false">Contact</a>
416     </li>
417   </ul>
418   <div class="tab-content" id="pills-tabContent">
419     <div class="tab-pane fade show active" id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab">
420       <p>Consequat occaecat ullamco amet non eiusmod nostrud dolore irure incididunt est duis anim sunt officia. Fugiat velit proident aliquip nisi incididunt nostrud exercitation proident est nisi. Irure magna elit commodo anim ex veniam culpa eiusmod id nostrud sit cupidatat in veniam ad. Eiusmod consequat eu adipisicing minim anim aliquip cupidatat culpa excepteur quis. Occaecat sit eu exercitation irure Lorem incididunt nostrud.</p>
421     </div>
422     <div class="tab-pane fade" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab">
423       <p>Ad pariatur nostrud pariatur exercitation ipsum ipsum culpa mollit commodo mollit ex. Aute sunt incididunt amet commodo est sint nisi deserunt pariatur do. Aliquip ex eiusmod voluptate exercitation cillum id incididunt elit sunt. Qui minim sit magna Lorem id et dolore velit Lorem amet exercitation duis deserunt. Anim id labore elit adipisicing ut in id occaecat pariatur ut ullamco ea tempor duis.</p>
424     </div>
425     <div class="tab-pane fade" id="pills-contact" role="tabpanel" aria-labelledby="pills-contact-tab">
426       <p>Est quis nulla laborum officia ad nisi ex nostrud culpa Lorem excepteur aliquip dolor aliqua irure ex. Nulla ut duis ipsum nisi elit fugiat commodo sunt reprehenderit laborum veniam eu veniam. Eiusmod minim exercitation fugiat irure ex labore incididunt do fugiat commodo aliquip sit id deserunt reprehenderit aliquip nostrud. Amet ex cupidatat excepteur aute veniam incididunt mollit cupidatat esse irure officia elit do ipsum ullamco Lorem. Ullamco ut ad minim do mollit labore ipsum laboris ipsum commodo sunt tempor enim incididunt. Commodo quis sunt dolore aliquip aute tempor irure magna enim minim reprehenderit. Ullamco consectetur culpa veniam sint cillum aliqua incididunt velit ullamco sunt ullamco quis quis commodo voluptate. Mollit nulla nostrud adipisicing aliqua cupidatat aliqua pariatur mollit voluptate voluptate consequat non.</p>
427     </div>
428   </div>
429 </div>
430
431 {% highlight html %}
432 <ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
433   <li class="nav-item">
434     <a class="nav-link active" id="pills-home-tab" data-toggle="pill" href="#pills-home" role="tab" aria-controls="pills-home" aria-selected="true">Home</a>
435   </li>
436   <li class="nav-item">
437     <a class="nav-link" id="pills-profile-tab" data-toggle="pill" href="#pills-profile" role="tab" aria-controls="pills-profile" aria-selected="false">Profile</a>
438   </li>
439   <li class="nav-item">
440     <a class="nav-link" id="pills-contact-tab" data-toggle="pill" href="#pills-contact" role="tab" aria-controls="pills-contact" aria-selected="false">Contact</a>
441   </li>
442 </ul>
443 <div class="tab-content" id="pills-tabContent">
444   <div class="tab-pane fade show active" id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab">...</div>
445   <div class="tab-pane fade" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab">...</div>
446   <div class="tab-pane fade" id="pills-contact" role="tabpanel" aria-labelledby="pills-contact-tab">...</div>
447 </div>
448 {% endhighlight %}
449
450 And with vertical pills.
451
452 <div class="bd-example bd-example-tabs">
453   <div class="row">
454     <div class="col-3">
455       <div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
456         <a class="nav-link active" id="v-pills-home-tab" data-toggle="pill" href="#v-pills-home" role="tab" aria-controls="v-pills-home" aria-selected="true">Home</a>
457         <a class="nav-link" id="v-pills-profile-tab" data-toggle="pill" href="#v-pills-profile" role="tab" aria-controls="v-pills-profile" aria-selected="false">Profile</a>
458         <a class="nav-link" id="v-pills-messages-tab" data-toggle="pill" href="#v-pills-messages" role="tab" aria-controls="v-pills-messages" aria-selected="false">Messages</a>
459         <a class="nav-link" id="v-pills-settings-tab" data-toggle="pill" href="#v-pills-settings" role="tab" aria-controls="v-pills-settings" aria-selected="false">Settings</a>
460       </div>
461     </div>
462     <div class="col-9">
463       <div class="tab-content" id="v-pills-tabContent">
464         <div class="tab-pane fade show active" id="v-pills-home" role="tabpanel" aria-labelledby="v-pills-home-tab">
465           <p>Cillum ad ut irure tempor velit nostrud occaecat ullamco aliqua anim Lorem sint. Veniam sint duis incididunt do esse magna mollit excepteur laborum qui. Id id reprehenderit sit est eu aliqua occaecat quis et velit excepteur laborum mollit dolore eiusmod. Ipsum dolor in occaecat commodo et voluptate minim reprehenderit mollit pariatur. Deserunt non laborum enim et cillum eu deserunt excepteur ea incididunt minim occaecat.</p>
466         </div>
467         <div class="tab-pane fade" id="v-pills-profile" role="tabpanel" aria-labelledby="v-pills-profile-tab">
468           <p>Culpa dolor voluptate do laboris laboris irure reprehenderit id incididunt duis pariatur mollit aute magna pariatur consectetur. Eu veniam duis non ut dolor deserunt commodo et minim in quis laboris ipsum velit id veniam. Quis ut consectetur adipisicing officia excepteur non sit. Ut et elit aliquip labore Lorem enim eu. Ullamco mollit occaecat dolore ipsum id officia mollit qui esse anim eiusmod do sint minim consectetur qui.</p>
469         </div>
470         <div class="tab-pane fade" id="v-pills-messages" role="tabpanel" aria-labelledby="v-pills-messages-tab">
471           <p>Fugiat id quis dolor culpa eiusmod anim velit excepteur proident dolor aute qui magna. Ad proident laboris ullamco esse anim Lorem Lorem veniam quis Lorem irure occaecat velit nostrud magna nulla. Velit et et proident Lorem do ea tempor officia dolor. Reprehenderit Lorem aliquip labore est magna commodo est ea veniam consectetur.</p>
472         </div>
473         <div class="tab-pane fade" id="v-pills-settings" role="tabpanel" aria-labelledby="v-pills-settings-tab">
474           <p>Eu dolore ea ullamco dolore Lorem id cupidatat excepteur reprehenderit consectetur elit id dolor proident in cupidatat officia. Voluptate excepteur commodo labore nisi cillum duis aliqua do. Aliqua amet qui mollit consectetur nulla mollit velit aliqua veniam nisi id do Lorem deserunt amet. Culpa ullamco sit adipisicing labore officia magna elit nisi in aute tempor commodo eiusmod.</p>
475         </div>
476       </div>
477     </div>
478   </div>
479 </div>
480
481 {% highlight html %}
482 <div class="row">
483   <div class="col-3">
484     <div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
485       <a class="nav-link active" id="v-pills-home-tab" data-toggle="pill" href="#v-pills-home" role="tab" aria-controls="v-pills-home" aria-selected="true">Home</a>
486       <a class="nav-link" id="v-pills-profile-tab" data-toggle="pill" href="#v-pills-profile" role="tab" aria-controls="v-pills-profile" aria-selected="false">Profile</a>
487       <a class="nav-link" id="v-pills-messages-tab" data-toggle="pill" href="#v-pills-messages" role="tab" aria-controls="v-pills-messages" aria-selected="false">Messages</a>
488       <a class="nav-link" id="v-pills-settings-tab" data-toggle="pill" href="#v-pills-settings" role="tab" aria-controls="v-pills-settings" aria-selected="false">Settings</a>
489     </div>
490   </div>
491   <div class="col-9">
492     <div class="tab-content" id="v-pills-tabContent">
493       <div class="tab-pane fade show active" id="v-pills-home" role="tabpanel" aria-labelledby="v-pills-home-tab">...</div>
494       <div class="tab-pane fade" id="v-pills-profile" role="tabpanel" aria-labelledby="v-pills-profile-tab">...</div>
495       <div class="tab-pane fade" id="v-pills-messages" role="tabpanel" aria-labelledby="v-pills-messages-tab">...</div>
496       <div class="tab-pane fade" id="v-pills-settings" role="tabpanel" aria-labelledby="v-pills-settings-tab">...</div>
497     </div>
498   </div>
499 </div>
500 {% endhighlight %}
501
502 ### Using data attributes
503
504 You can activate a tab or pill navigation without writing any JavaScript by simply specifying `data-toggle="tab"` or `data-toggle="pill"` on an element. Use these data attributes on `.nav-tabs` or `.nav-pills`.
505
506 {% highlight html %}
507 <!-- Nav tabs -->
508 <ul class="nav nav-tabs" id="myTab" role="tablist">
509   <li class="nav-item">
510     <a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a>
511   </li>
512   <li class="nav-item">
513     <a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a>
514   </li>
515   <li class="nav-item">
516     <a class="nav-link" id="messages-tab" data-toggle="tab" href="#messages" role="tab" aria-controls="messages" aria-selected="false">Messages</a>
517   </li>
518   <li class="nav-item">
519     <a class="nav-link" id="settings-tab" data-toggle="tab" href="#settings" role="tab" aria-controls="settings" aria-selected="false">Settings</a>
520   </li>
521 </ul>
522
523 <!-- Tab panes -->
524 <div class="tab-content">
525   <div class="tab-pane active" id="home" role="tabpanel" aria-labelledby="home-tab">...</div>
526   <div class="tab-pane" id="profile" role="tabpanel" aria-labelledby="profile-tab">...</div>
527   <div class="tab-pane" id="messages" role="tabpanel" aria-labelledby="messages-tab">...</div>
528   <div class="tab-pane" id="settings" role="tabpanel" aria-labelledby="settings-tab">...</div>
529 </div>
530 {% endhighlight %}
531
532 ### Via JavaScript
533
534 Enable tabbable tabs via JavaScript (each tab needs to be activated individually):
535
536 {% highlight js %}
537 $('#myTab a').on('click', function (e) {
538   e.preventDefault()
539   $(this).tab('show')
540 })
541 {% endhighlight %}
542
543 You can activate individual tabs in several ways:
544
545 {% highlight js %}
546 $('#myTab a[href="#profile"]').tab('show') // Select tab by name
547 $('#myTab li:first-child a').tab('show') // Select first tab
548 $('#myTab li:last-child a').tab('show') // Select last tab
549 $('#myTab li:nth-child(3) a').tab('show') // Select third tab
550 {% endhighlight %}
551
552 ### Fade effect
553
554 To make tabs fade in, add `.fade` to each `.tab-pane`. The first tab pane must also have `.show` to make the initial content visible.
555
556 {% highlight html %}
557 <div class="tab-content">
558   <div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">...</div>
559   <div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">...</div>
560   <div class="tab-pane fade" id="messages" role="tabpanel" aria-labelledby="messages-tab">...</div>
561   <div class="tab-pane fade" id="settings" role="tabpanel" aria-labelledby="settings-tab">...</div>
562 </div>
563 {% endhighlight %}
564
565 ### Methods
566
567 {% include callout-danger-async-methods.md %}
568
569 #### $().tab
570
571 Activates a tab element and content container. Tab should have either a `data-target` or an `href` targeting a container node in the DOM.
572
573 {% highlight html %}
574 <ul class="nav nav-tabs" id="myTab" role="tablist">
575   <li class="nav-item">
576     <a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a>
577   </li>
578   <li class="nav-item">
579     <a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a>
580   </li>
581   <li class="nav-item">
582     <a class="nav-link" id="messages-tab" data-toggle="tab" href="#messages" role="tab" aria-controls="messages" aria-selected="false">Messages</a>
583   </li>
584   <li class="nav-item">
585     <a class="nav-link" id="settings-tab" data-toggle="tab" href="#settings" role="tab" aria-controls="settings" aria-selected="false">Settings</a>
586   </li>
587 </ul>
588
589 <div class="tab-content">
590   <div class="tab-pane active" id="home" role="tabpanel" aria-labelledby="home-tab">...</div>
591   <div class="tab-pane" id="profile" role="tabpanel" aria-labelledby="profile-tab">...</div>
592   <div class="tab-pane" id="messages" role="tabpanel" aria-labelledby="messages-tab">...</div>
593   <div class="tab-pane" id="settings" role="tabpanel" aria-labelledby="settings-tab">...</div>
594 </div>
595
596 <script>
597   $(function () {
598     $('#myTab li:last-child a').tab('show')
599   })
600 </script>
601 {% endhighlight %}
602
603 #### .tab('show')
604
605 Selects the given tab and shows its associated pane. Any other tab that was previously selected becomes unselected and its associated pane is hidden. **Returns to the caller before the tab pane has actually been shown** (i.e. before the `shown.bs.tab` event occurs).
606
607 {% highlight js %}
608 $('#someTab').tab('show')
609 {% endhighlight %}
610
611 #### .tab('dispose')
612
613 Destroys an element's tab.
614
615 ### Events
616
617 When showing a new tab, the events fire in the following order:
618
619 1. `hide.bs.tab` (on the current active tab)
620 2. `show.bs.tab` (on the to-be-shown tab)
621 3. `hidden.bs.tab` (on the previous active tab, the same one as for the `hide.bs.tab` event)
622 4. `shown.bs.tab` (on the newly-active just-shown tab, the same one as for the `show.bs.tab` event)
623
624 If no tab was already active, then the `hide.bs.tab` and `hidden.bs.tab` events will not be fired.
625
626 <table class="table table-bordered table-striped">
627   <thead>
628     <tr>
629       <th style="width: 150px;">Event Type</th>
630       <th>Description</th>
631     </tr>
632   </thead>
633   <tbody>
634     <tr>
635       <td>show.bs.tab</td>
636       <td>This event fires on tab show, but before the new tab has been shown. Use <code>event.target</code> and <code>event.relatedTarget</code> to target the active tab and the previous active tab (if available) respectively.</td>
637     </tr>
638     <tr>
639       <td>shown.bs.tab</td>
640       <td>This event fires on tab show after a tab has been shown. Use <code>event.target</code> and <code>event.relatedTarget</code> to target the active tab and the previous active tab (if available) respectively.</td>
641     </tr>
642     <tr>
643       <td>hide.bs.tab</td>
644       <td>This event fires when a new tab is to be shown (and thus the previous active tab is to be hidden). Use <code>event.target</code> and <code>event.relatedTarget</code> to target the current active tab and the new soon-to-be-active tab, respectively.</td>
645     </tr>
646     <tr>
647       <td>hidden.bs.tab</td>
648       <td>This event fires after a new tab is shown (and thus the previous active tab is hidden). Use <code>event.target</code> and <code>event.relatedTarget</code> to target the previous active tab and the new active tab, respectively.</td>
649     </tr>
650   </tbody>
651 </table>
652
653 {% highlight js %}
654 $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
655   e.target // newly activated tab
656   e.relatedTarget // previous active tab
657 })
658 {% endhighlight %}