Angular ng Bootstrap Dropdown Component Last Updated : 06 Jul, 2021 Comments Improve Suggest changes Like Article Like Report Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article we will see how to use Dropdown in angular ng bootstrap. Dropdown is used to make a group of objects that will come out by clicking on it. Installation syntax: ng add @ng-bootstrap/ng-bootstrap Approach: First, install the angular ng bootstrap using the above-mentioned command.Import ng bootstrap module in module.ts import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; imports: [ NgbModule ] In app.component.html, make a dropdown component. Serve the app using ng serve. Example 1: In this example, we are using basic ngbDropdown. app.component.html <div class="col"> <br/> <div ngbDropdown> <button class="btn btn-warning" id="gfg" ngbDropdownToggle>Click Here!</button> <div ngbDropdownMenu="gfg"> <button ngbDropdownItem>GeeksforGeeks</button> <button ngbDropdownItem>Angular10</button> <button ngbDropdownItem>ng bootstrap</button> </div> </div> </div> app.module.ts import { NgModule } from '@angular/core'; // Importing forms module import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; @NgModule({ bootstrap: [ AppComponent ], declarations: [ AppComponent ], imports: [ FormsModule, BrowserModule, BrowserAnimationsModule, ReactiveFormsModule, NgbModule ] }) export class AppModule { } Output: Example 2: In this example, we are using ngbDropdown with placement top-right. app.component.html <div class="col"> <br/><br/><br/><br/> <div ngbDropdown placement="top-right"> <button class="btn btn-warning" id="gfg" ngbDropdownToggle>Click Here!</button> <div ngbDropdownMenu="gfg"> <button ngbDropdownItem>GeeksforGeeks</button> <button ngbDropdownItem>Angular10</button> <button ngbDropdownItem>ng bootstrap</button> </div> </div> </div> app.module.ts import { NgModule } from '@angular/core'; // Importing forms module import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; @NgModule({ bootstrap: [ AppComponent ], declarations: [ AppComponent ], imports: [ FormsModule, BrowserModule, BrowserAnimationsModule, ReactiveFormsModule, NgbModule ] }) export class AppModule { } app.component.css .col{ margin: 50px; } Output: Reference: https://ng-bootstrap.github.io/#/components/dropdown/examples Comment More infoAdvertise with us Next Article Angular ng Bootstrap Dropdown Component taran910 Follow Improve Article Tags : Web Technologies AngularJS Angular-ng-bootstrap Similar Reads Angular ngx bootstrap Dropdowns Component Angular ngx bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will see how to use Dropdowns in angular ngx bootstrap. Installation syntax: npm install ngx-bo 2 min read Angular ng Bootstrap Rating Component Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will see how to use Rating in angular ng bootstrap. Rating component is used to make a component 2 min read Angular ngx Bootstrap Rating Component Angular ngx bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will know how to use Rating in angular ngx bootstrap. Rating is used to make a component that w 2 min read Angular ng Bootstrap Datepicker Component Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will see how to use Datepicker in angular ng bootstrap. The Datepicker is used to make a compone 1 min read Angular ng Bootstrap Popover Component Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites.In this article we will know how to use Popover in angular ng bootstrap. Popover is used to make a button that will b 2 min read Angular ngx Bootstrap Tabs Component Angular ngx bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will know how to use Tabs in angular ngx bootstrap. Installation syntax: npm install ngx-bootst 2 min read Angular ng Bootstrap Alert Component Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will see how to use Alert in angular ng bootstrap. Alert is used to provide contextual feedback 2 min read Angular ng Bootstrap Toast Component Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will see how to use Toast in angular ng bootstrap. The Toast component is used to make a compone 2 min read Angular PrimeNG Dropdown Component Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Dropdown component in Angular ngx Bootstrap. We will al 9 min read React-Bootstrap Dropdown Component React-Bootstrap is a front-end framework that was designed keeping react in mind. Dropdown Component provides a way to displaying lists of links or more actions within a menu when clicked over it. We can use the following approach in ReactJS to use the react-bootstrap Dropdown Component.Dropdown Pro 5 min read Like