Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How will you create a tabbed navigation menu?



How will you create a tabbed navigation menu?..

Answer / Ankush Goel

To create a tabbed navigation menu in Bootstrap, you can use the `.nav` and `.nav-tabs` classes along with the `.tab-content` class for content containers. Here's an example:

```html
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#menu1">Menu 1</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#menu2">Menu 2</a>
</li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane active">...</div>
<div id="menu1" class="tab-pane">...</div>
<div id="menu2" class="tab-pane">...</div>
</div>

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Bootstrap Interview Questions

What are bootstrap media queries?

1 Answers  


Define the key components of bootstrap.

1 Answers  


What is column ordering and how it works?

1 Answers  


How we can create a navbar in bootstrap?

1 Answers  


Why bootstrap is used for mobile web development? Explain

1 Answers  


What is bootstrap framework and why it is used?

1 Answers  


what is list group in Bootstrap and what is the use of it?

1 Answers  


What is data toggle in bootstrap and how we can use it?

1 Answers  


What is the bootstrap grid system?

1 Answers  


What will be the default bootstrap look of the alert created with this following code:<div class="alert" role="alert">warning! What I'm missing something.</Div>

1 Answers  


Explain bootstrap 4 navbars?

1 Answers  


What are the new features of bootstrap 4?

1 Answers  


Categories