Making Material tabs scrollable

前端 未结 3 1369
长情又很酷
长情又很酷 2021-01-06 12:17

I\'m using Material tabs in my application (mat-tab s inside mat-tab-group) When there are more tabs than can be displayed, two navigation buttons

3条回答
  •  悲&欢浪女
    2021-01-06 12:52

    Try this pure css solution StackBlitz

    Put this code in the same component where mat-tab is used

    ::ng-deep .mat-tab-header {
      overflow-x: scroll !important;
    }
    
    ::ng-deep .mat-tab-label-container { 
      overflow: visible !important;
    }
    
    ::ng-deep .mat-tab-header::-webkit-scrollbar { // TO Remove horizontal scrollbar in tabs
      display: none;
    }

提交回复
热议问题