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 is the difference between bootstrap 3 and bootstrap 4?

1 Answers  


What is the role of pagination in bootstrap?

1 Answers  


What are input groups and button groups in bootstrap 3 framework?

1 Answers  


What Is Normalize In Bootstrap?

1 Answers  


Explain me can you put a listgroup within bootstrap panel?

1 Answers  


Tell me can you put a table within bootstrap panel?

1 Answers  


Explain me what is bootstrap breadcrumb?

1 Answers  


In Bootstrap what are the two ways you can display the code?

1 Answers  


What are the different ways of using bootstrap?

1 Answers  


Explain what media object in Bootstrap is and what are their types?

1 Answers  


Do you know what are bootstrap media objects?

1 Answers  


How will you create a striped progress bar using bootstrap?

1 Answers  


Categories