top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to create a tabbed navigation menu in Bootstrap?

0 votes
238 views
How to create a tabbed navigation menu in Bootstrap?
posted Jun 30, 2017 by Brajagopal Das

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Bootstrap provides an easy and quick way to create basic nav components like tabs and pills which are very flexible and elegant. All the Bootstrap's nav components—tabs and pills—share the same base markup and styles through the base .nav class. Add class .nav-tabs to create a tabbed navigation menu.

Example

<ul class="nav nav-tabs">
    <li class="active"><a href="#">Home</a></li>
    <li><a href="#">Profile</a></li>
    <li><a href="#">Messages</a></li>
</ul>

Preview

enter image description here

answer Jul 1, 2017 by Rony Chakrabortty
...