angular-material

Angular Material - Mat-tabs - How to align a single tab to the right?


Angular Material Tabs - can we align just the "Third" tab to the right?

Here is a stackbliz: https://stackblitz.com/edit/angular-3keysh-czzstn?file=app%2Ftab-group-align-example.html

enter image description here


Solution

  • https://stackblitz.com/edit/angular-3keysh-vflzyz?file=app%2Ftab-group-align-example.html,app%2Ftab-group-align-example.css,app%2Ftab-group-align-example.ts

    ::ng-deep .mat-tab-header .mat-tab-label:last-child {
      margin-left: auto;
    }
    

    enter image description here