Tell me how will you create a tabbed navigation menu?
Answer / Sudhir Kumar
To create a tabbed navigation menu in Bootstrap, use the nav-tabs and tab-content classes. Here's an example: <ul class="nav nav-tabs" id="exTabExample1">n <li class="nav-item">n <a class="nav-link active" href="#tab1" data-toggle="tab">Home</a>n </li>n <li class="nav-item">n <a class="nav-link" href="#tab2" data-toggle="tab">Profile</a>n </li>n <li class="nav-item">n <a class="nav-link" href="#tab3" data-toggle="tab">Settings</a>n </li>n</ul>n<div class="tab-content">n <div class="tab-pane active" id="tab1">...n </div>n <div class="tab-pane" id="tab2">...n </div>n <div class="tab-pane" id="tab3">...n </div>n</div>
| Is This Answer Correct ? | 0 Yes | 0 No |
Define fluid layout.
How to order columns in bootstrap?
Tell me the typography and links in bootstrap?
How can we customize links of pagination in bootstrap?
How will you create a pills navigation menu?
How will you create a stacked progress bar using bootstrap?
What is bootstrap 4 image thumbnail?
The typography and links in bootstrap?
Explain me types of lists supported by bootstrap?
How will you create a bootstrap alert?
How do you use the Dropdown plugin?
Why should I use bootstrap?