Tell me which class is used to draw a toolbar of buttons?
Answer / Pankaj Kumar Pandey
In Bootstrap, a toolbar can be created using the .nav and .navbar classes. Here's an example:n```htmln<nav class="navbar navbar-expand-lg navbar-light bg-light">n <a class="navbar-brand" href="#">My Toolbar</a>n <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">n <span class="navbar-toggler-icon"></span>n </button>n <div class="collapse navbar-collapse" id="navbarNav">n <ul class="navbar-nav">n <li class="nav-item active">n <a class="nav-link" href="#">Home</a>n </li>n <li class="nav-item">n <a class="nav-link" href="#">Features</a>n </li>n <li class="nav-item">n <a class="nav-link" href="#">Pricing</a>n </li>n </ul>n </div>n</nav>n```
| Is This Answer Correct ? | 0 Yes | 0 No |
What is bootstrap 4 image thumbnail?
What is Contextual classes of table in Bootstrap?
Explain bootstrap?
Do you know what are bootstrap labels?
What are bootstrap labels?
Tell me how will you create a bootstrap panel with heading?
What is affix plugin?
What is media object in bootstrap and what are their types?
What is the underlying grid structure used in bootstrap?
Tell me what is bootstrap page header?
What is bootstrap carousel?
Why do we use jumbotron in bootstrap?