Open In App

Angular PrimeNG TabMenu Styling

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. It provides a lot of templates, components, theme design, an extensive icon library, and much more. In this article, we will see the Angular PrimeNG TabMenu Styling.

The TabMenu component allows the creation of the menu in the form of a tier. It displays submenus in nested overlays. The TabMenu Styling classes allow changing the design of the component from the default design.



Angular PrimeNG TabMenu Styling:

 



Syntax:

:host ::ng-deep .p-tabmenu {
      // CSS Styling
}

Creating Angular application & Module Installation:

Step 1: Create an Angular application using the following command.

ng new geeks_angular

Step 2: After creating your project folder i.e. geeks_angular, move to it using the following command.

cd geeks_angular

Step 3: Install PrimeNG and CDK in your given directory.

npm install primeng --save
npm install primeicons --save

Project Structure: The project structure will look like the following:

 

Steps to run the above file: Run the below command

ng serve --save

Example 1: Below is the example code that illustrates the use of Angular PrimeNG TabMenu Styling. In the following example, we have a TabMenu with a border around the list




<h1 style="color: green; text-align: center;">
    GeeksforGeeks
</h1>
  
<h3>Angular PrimeNG TabMenu Styling</h3>
<p-tabMenu [model]="items"></p-tabMenu>




import { Component } from "@angular/core";
import { MenuItem } from "primeng/api";
  
@Component({
    selector: "app-root",
    templateUrl: "./app.component.html",
    styleUrls: ["./app.component.css"]
})
  
export class AppComponent {
    items: MenuItem[];
    ngOnInit() {
        this.items = [
            { label: "SQL", icon: "pi pi-database" },
            {
                label: "Follow GeeksforGeeks on youtube",
                icon: "pi pi-fw pi-youtube"
            },
            { label: "Webite", icon: "pi pi-fw pi-globe" },
            { label: "Find all Documentation", icon: "pi pi-fw pi-file" }
        ];
    }
}




:host ::ng-deep .p-tabmenu {
    border: 10px green;
    border-style: dashed;
    padding: 2px;
}




import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { RouterModule } from "@angular/router";
import { BrowserAnimationsModule } 
    from "@angular/platform-browser/animations";
import { AppComponent } from "./app.component";
import { MessageModule } from "primeng/message";
import { TabMenuModule } from "primeng/tabmenu";
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        MessageModule,
        TabMenuModule,
        RouterModule.forRoot([{ path: "", component: AppComponent }])
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
  
export class AppModule {}

Output:

 

Example 2: Below is another example code that illustrates the use of Angular PrimeNG TabMenu Styling. In the following example, we have menu logos with larger sizes and shadows.




<h1 style="color: green; text-align: center;">
    GeeksforGeeks
</h1>
  
<h3>Angular PrimeNG TabMenu Styling</h3>
<p-tabMenu [model]="items"></p-tabMenu>




:host ::ng-deep .p-menuitem-icon {
    font-size: 32px;
    box-shadow: 4px 4px 4px 4px green;
}




import { Component } from "@angular/core";
import { MenuItem } from "primeng/api";
  
@Component({
    selector: "app-root",
    templateUrl: "./app.component.html",
    styleUrls: ["./app.component.css"]
})
  
export class AppComponent {
    items: MenuItem[];
    ngOnInit() {
        this.items = [
            { label: "SQL", icon: "pi pi-database" },
            {
                label: "Follow GeeksforGeeks on youtube",
                icon: "pi pi-fw pi-youtube"
            },
            { label: "Webite", icon: "pi pi-fw pi-globe" },
            { label: "Find all Documentation", icon: "pi pi-fw pi-file" }
        ];
    }
}




import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { RouterModule } from "@angular/router";
import { BrowserAnimationsModule } 
    from "@angular/platform-browser/animations";
import { AppComponent } from "./app.component";
import { MessageModule } from "primeng/message";
import { TabMenuModule } from "primeng/tabmenu";
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        MessageModule,
        TabMenuModule,
        RouterModule.forRoot([{ path: "", component: AppComponent }])
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
  
export class AppModule {}

Output:

 

Reference: http://primefaces.org/primeng/tabmenu


Article Tags :