HTML code
This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 3.3.4 included, to get the result that you can see in the preview selection
Download<div class="container bootstrap snippets bootdey">
<h2>Nav-tabs Dropdown <small>Vertical</small></h2>
<p class="lead">Dropdown appears at width less than or equal to 768px</p>
<div class="row">
<div class="col-sm-3">
<a href="#" class="nav-tabs-dropdown btn btn-block btn-primary">Tabs</a>
<ul id="nav-tabs-wrapper" class="nav nav-tabs nav-pills nav-stacked well">
<li class="active"><a href="#vtab1" data-toggle="tab">Tab 1</a></li>
<li><a href="#vtab2" data-toggle="tab">Tab 2</a></li>
<li><a href="#vtab3" data-toggle="tab">Tab 3</a></li>
</ul>
</div>
<div class="col-sm-9">
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="vtab1">
<h3>Tab 1</h3>
<p>Place a link with the class <code>.nav-tabs-dropdown.btn.btn-block.btn-primary</code> above the tabs list and add an id of <code>#nav-tabs-wrapper</code> to the tabs list for the dropdown to work.
<pre>
<code class="language-html" data-lang="html">
<p><span><</span>a <span style="color: #4f9fcf">href=</span><span style="color: #d44950;">"#"</span> <span style="color: #4f9fcf">class=</span><span style="color: #d44950;">"nav-tabs-dropdown btn btn-block btn-primary"</span><span>></span>Tabs<span></a></span><br/><span><span><</span>ul</span> <span style="color: #4f9fcf">id=</span><span style="color: #d44950;">"nav-tabs-wrapper"</span> <span style="color: #4f9fcf">class=</span><span style="color: #d44950;">nav nav-tabs nav-pills nav-stacked wells"</span><span>>...</ul></span></p>
</code>
</pre>
</div>
<div role="tabpanel" class="tab-pane fade" id="vtab2">
<h3>Tab 2</h3>
<p> Mauris imperdiet dignissim ante, in efficitur mauris elementum sed. Cras vulputate malesuada magna. Morbi tincidunt eros a dui cursus, vitae dignissim nulla scelerisque. Duis pharetra scelerisque mi vel luctus. Cras eu purus efficitur, blandit nisi id, fringilla nulla.</p>
</div>
<div role="tabpanel" class="tab-pane fade in" id="vtab3">
<h3>Tab 3</h3>
<p>Etiam id pharetra quam. Morbi tristique nunc vel sapien dapibus, sit amet imperdiet quam venenatis. Vestibulum et suscipit urna. Suspendisse volutpat quis est eu volutpat. Nulla non tortor venenatis turpis congue aliquet. Vivamus at elit vel massa elementum tempor sit amet sed odio. Nullam placerat, arcu sed ullamcorper ornare, erat erat placerat quam, in feugiat nulla purus in nunc. Maecenas vitae erat auctor, aliquam tellus et, vulputate eros.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h2>Nav-tabs Dropdown <small>Horizontal</small></h2>
<p class="lead">Dropdown appears at width less than or equal to 768px</p>
<a href="#" class="nav-tabs-dropdown btn btn-block btn-primary">Tabs</a>
<ul id="nav-tabs-wrapper" class="nav nav-tabs nav-tabs-horizontal">
<li class="active"><a href="#htab1" data-toggle="tab">Tab 1</a></li>
<li><a href="#htab2" data-toggle="tab">Tab 2</a></li>
<li><a href="#htab3" data-toggle="tab">Tab 3</a></li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="htab1">
<h3>Tab 1</h3>
<p>Add the class <code>.nav-tabs-horizontal</code> to the tabs list for the dropdown to work with horizontal tabs.
<pre>
<code class="language-html" data-lang="html">
<p><span><span><</span>ul</span> <span style="color: #4f9fcf">id=</span><span style="color: #d44950;">"nav-tabs-wrapper"</span> <span style="color: #4f9fcf">class=</span><span style="color: #d44950;">"nav nav-tabs nav-tabs-horizontal"</span><span>></span></p>
</code>
</pre>
</div>
<div role="tabpanel" class="tab-pane fade" id="htab2">
<h3>Tab 2</h3>
<p> Mauris imperdiet dignissim ante, in efficitur mauris elementum sed. Cras vulputate malesuada magna. Morbi tincidunt eros a dui cursus, vitae dignissim nulla scelerisque. Duis pharetra scelerisque mi vel luctus. Cras eu purus efficitur, blandit nisi id, fringilla nulla.</p>
</div>
<div role="tabpanel" class="tab-pane fade in" id="htab3">
<h3>Tab 3</h3>
<p>Etiam id pharetra quam. Morbi tristique nunc vel sapien dapibus, sit amet imperdiet quam venenatis. Vestibulum et suscipit urna. Suspendisse volutpat quis est eu volutpat. Nulla non tortor venenatis turpis congue aliquet. Vivamus at elit vel massa elementum tempor sit amet sed odio. Nullam placerat, arcu sed ullamcorper ornare, erat erat placerat quam, in feugiat nulla purus in nunc. Maecenas vitae erat auctor, aliquam tellus et, vulputate eros.</p>
</div>
</div>
</div>
</div>
</div>
CSS code
This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 3.3.4 included, to get the result that you can see in the preview selection
Download.nav-tabs-dropdown {
display: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.nav-tabs-dropdown:before {
content: "\e114";
font-family: 'Glyphicons Halflings';
position: absolute;
right: 30px;
}
@media screen and (min-width: 769px) {
#nav-tabs-wrapper {
display: block!important;
}
}
@media screen and (max-width: 768px) {
.nav-tabs-dropdown {
display: block;
}
#nav-tabs-wrapper {
display: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
text-align: center;
}
.nav-tabs-horizontal {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}
.nav-tabs-horizontal > li {
float: none;
}
.nav-tabs-horizontal > li + li {
margin-left: 2px;
}
.nav-tabs-horizontal > li,
.nav-tabs-horizontal > li > a {
background: transparent;
width: 100%;
}
.nav-tabs-horizontal > li > a {
border-radius: 4px;
}
.nav-tabs-horizontal > li.active > a,
.nav-tabs-horizontal > li.active > a:hover,
.nav-tabs-horizontal > li.active > a:focus {
color: #ffffff;
background-color: #428bca;
}
}
Javascript/Jquery code
This is the javascript code used to create this bootstrap snippet, You can copy and paste the following javascript code inside a page with bootstrap 3.3.4 included, to get the result that you can see in the preview selection
Download$('.nav-tabs-dropdown').each(function(i, elm) {
$(elm).text($(elm).next('ul').find('li.active a').text());
});
$('.nav-tabs-dropdown').on('click', function(e) {
e.preventDefault();
$(e.target).toggleClass('open').next('ul').slideToggle();
});
$('#nav-tabs-wrapper a[data-toggle="tab"]').on('click', function(e) {
e.preventDefault();
$(e.target).closest('ul').hide().prev('a').removeClass('open').text($(this).text());
});

About this bootstrap snippet
This bootstrap snippet, Navtabs dropdown, was published on Jul 1st 2015, 19:29 by Stephen Hellauer and it is free.
We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.
We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.
This snippet currectly have 5.3K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 3.3.4
This snippet is based on bootstrap 3.3.4 and the grid system of this framework
Responsive
Based on bootstrap framework makes all the layouts perfectly responsive for all devices
Crossbrowser compatibility
Tested on all major browsers, it works smoothly on all of them
Jquery plugins
Great built-in plugins with jquery framework, you can easy to change all declarations
semantic html 5
Built on html / css3 the code quality is really amazing
Simple Integration
This snippet can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working